import { ScaleContinuousNumeric } from 'd3-scale'; interface ColumnAxisProps { ticks?: number; tickArguments?: any; tickValues?: any; tickFormat?: any; tickSize?: any; tickSizeInner?: any; tickSizeOuter?: any; tickPadding?: any; tickSpacing?: number; showLabel?: (d: any) => boolean; showDomain?: boolean; className?: string; } interface AgeAxisProps extends ColumnAxisProps { scale: ScaleContinuousNumeric; minTickSpacing?: number; } export declare function ColumnAxis(props: ColumnAxisProps): import('react').FunctionComponentElement; export declare function AgeAxis(props: AgeAxisProps): import('react').ReactElement<{ className: string | undefined; ref: import('react').RefObject; }, string | import('react').JSXElementConstructor>; export {};