mui-simple
Version:
Override mui-v7 components to simplify usage
16 lines • 576 B
TypeScript
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