UNPKG

@activecollab/components

Version:

ActiveCollab Components

19 lines 539 B
import { FC, ReactNode } from "react"; export interface IStep { index?: number; isLast?: boolean; subtitle: string; title?: string; onNextButtonClick?: () => void; onPreviousButtonClick?: () => void; onClose?: () => void; children: ReactNode; actionLabel?: string; shouldRenderNextButton?: boolean; changingStepInProgress?: boolean; disableBackButton?: boolean; customRightHeader?: ReactNode; skip?: boolean; } export declare const Step: FC<IStep>; //# sourceMappingURL=Step.d.ts.map