/// export interface AxisLabelProps { /** The value that should be displayed as the label. */ value: number; } interface AxisLabelContainerProps { /** A label component to be displayed. */ children: React.ReactNode; /** The x position of the label. */ x: number; /** The width of the root container. */ containerWidth: number; } export declare const AxisLabelContainer: React.FC; export {}; //# sourceMappingURL=AxisLabel.d.ts.map