import type { StepType } from '../../../decs';
interface UseStepperStepsHookProps {
    color: string;
    steps: Array<string | StepType>;
    customStyleProps: Record<string, any>;
    OPTIONAL_LABEL: string | undefined;
}
interface UseStepperStepsHookResponse {
    steps: StepType[];
    icons: any;
    iconListSize: any;
    isCustomStyleUsed: any;
}
export declare const useStepperSteps: ({ color, steps: _steps, customStyleProps, OPTIONAL_LABEL, }: UseStepperStepsHookProps) => UseStepperStepsHookResponse;
export {};
//# sourceMappingURL=useStepperSteps.hook.d.ts.map