@navinc/base-react-components
Version:
Nav's Pattern Library
32 lines (31 loc) • 1.16 kB
TypeScript
export const ChildContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
export const Image: import("styled-components").StyledComponent<({ filename, ...props }: {
[x: string]: any;
filename: any;
}) => JSX.Element, any, {}, never>;
export const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
export const InnerContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
export function WizardFlowProvider({ children }: {
children: any;
}): JSX.Element;
export function useWizardFlow(): {
currentStep: any;
totalSteps: any;
incrementStep: any;
decrementStep: any;
isLoading: any;
setIsLoading: any;
};
export default WizardStep;
declare function WizardStep({ stepLabel, stepColor, stepContainerTestId, imageFileName, headerCopy, actionTrackingContext, actionForm, actionText, actionTestId, children, }: {
stepLabel: any;
stepColor: any;
stepContainerTestId: any;
imageFileName: any;
headerCopy: any;
actionTrackingContext: any;
actionForm: any;
actionText: any;
actionTestId: any;
children: any;
}): JSX.Element;