/// import type { PinFrameProps } from './frame'; export interface AxisCSSProps { start?: number | string; end?: number | string; size?: number | string; } export declare function axisPinsToAxisCSSProps(start: number | string | undefined, center: number | string | undefined, end: number | string | undefined, size: number | string | undefined): AxisCSSProps; export declare type CSSFrame = Partial>; export declare function convertPinsToStyleProps(props: PinFrameProps & Pick): CSSFrame; export declare function convertPinsToAbsoluteStyleProps(props: PinFrameProps): CSSFrame;