import { IProgressRenderlessParams, IProgressBarStyle, IProgressPathStyle, IProgressIconStyle, IProgressColorItem } from '../progress'; export declare const computedBarStyle: ({ api, props }: Pick) => () => IProgressBarStyle; export declare const computedRelativeStrokeWidth: ({ constants, state }: Pick) => () => number; export declare const computedRadius: ({ constants, props, state }: Pick) => () => number; export declare const computedTrackPath: ({ constants, props, state }: Pick) => () => string; export declare const computedPerimeter: ({ state }: Pick) => () => number; export declare const computedRate: ({ constants, props }: Pick) => () => number; export declare const computedStrokeDashoffset: ({ state }: Pick) => () => string; export declare const computedTrailPathStyle: ({ state }: Pick) => () => IProgressPathStyle; export declare const computedCircleStyle: ({ state }: Pick) => () => { height: string; width: string; } | { height?: undefined; width?: undefined; }; export declare const computedCirclePathStyle: ({ props, state }: Pick) => () => IProgressPathStyle; export declare const computedStroke: ({ api, constants, props }: Pick) => () => string; export declare const computedIconClass: ({ constants, props, mode }: Pick) => () => string; export declare const computedIconStyle: ({ constants, props, state }: Pick) => () => IProgressIconStyle | {}; export declare const computedProgressTextSize: ({ constants, props, state, mode }: Pick) => () => number; export declare const computedContent: ({ props }: Pick) => () => string; export declare const getCurrentColor: ({ api, props }: Pick) => (percentage: any) => any; export declare const getLevelColor: ({ api }: Pick) => (percentage: number) => string; export declare const getColorArray: ({ props }: Pick) => () => IProgressColorItem[]; export declare const customBeforeAppearHook: ({ props, state }: Pick) => (el: HTMLElement) => void; export declare const customAppearHook: (el: HTMLElement) => void; export declare const customAfterAppearHook: ({ state, props }: Pick) => (el: HTMLElement) => void;