Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

10 lines
533 B
TypeScript

import { AxisConfig, ChartsXAxisProps } from "../models/axis.js";
export declare const useUtilityClasses: (ownerState: Pick<AxisConfig<any, any, ChartsXAxisProps>, "id" | "position" | "classes">) => Record<"root" | "line" | "label" | "tickContainer" | "tick" | "tickLabel", string>;
export declare const TICK_LABEL_GAP = 3;
export declare const AXIS_LABEL_TICK_LABEL_GAP = 4;
export declare const defaultProps: {
readonly disableLine: false;
readonly disableTicks: false;
readonly tickSize: 6;
readonly tickLabelMinGap: 4;
};