export type NUMERICAL = 'numerical'; export declare const NUMERICAL: NUMERICAL; export type LINEAR = 'linear'; export declare const LINEAR: LINEAR; export type CATEGORICAL = 'categorical'; export declare const CATEGORICAL: CATEGORICAL; export type TIME = 'time'; export declare const TIME: TIME; export type LOG = 'log'; export declare const LOG: LOG; export type XYAxisTypeTime = TIME; export declare const XYAxisTypeTime: XYAxisTypeTime; export type XYAxisTypeCategorical = CATEGORICAL; export declare const XYAxisTypeCategorical: XYAxisTypeCategorical; export type XYAxisTypeLinear = `${NUMERICAL}.${LINEAR}`; export declare const XYAxisTypeLinear: XYAxisTypeLinear; export type XYAxisTypeLog = `${NUMERICAL}.${LOG}`; export declare const XYAxisTypeLog: XYAxisTypeLog; export type XYAxisAnyNumericalType = XYAxisTypeTime | XYAxisTypeLinear | XYAxisTypeLog; export declare const XYAxisMapper: { readonly numerical: "numerical.linear"; readonly log: "numerical.log"; readonly categorical: "categorical"; readonly time: "time"; }; export type XYAxisInternalTypes = (typeof XYAxisMapper)[keyof typeof XYAxisMapper];