import React from "react"; import type { CANPLOT_LAYER } from "../FrameDrawer"; import type { Style, TicksConfig } from "../types"; export declare const XTicks: React.NamedExoticComponent<{ layer?: number | keyof typeof CANPLOT_LAYER; scaleId: string; withGrid?: boolean; gridStyle?: Style; tickStyle?: Style; labelStyle?: Style; labelGap?: number; tickSize?: number; ticks: TicksConfig; }>; export declare const YTicks: React.NamedExoticComponent<{ layer?: number | keyof typeof CANPLOT_LAYER; scaleId: string; withGrid?: boolean; gridStyle?: Style; tickStyle?: Style; labelStyle?: Style; labelGap?: number; tickSize?: number; ticks: TicksConfig; }>; //# sourceMappingURL=Ticks.d.ts.map