@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
11 lines (10 loc) • 409 B
TypeScript
/// <reference types="react" />
import { SxProps } from '@mui/material';
export type StepProps = {
label: string;
stepNumber: number | string;
component?: React.ReactNode;
componentsLayoutStyles?: SxProps;
layoutStyles?: SxProps;
};
export declare const Step: ({ component, componentsLayoutStyles, label, layoutStyles, stepNumber, }: StepProps) => import("react/jsx-runtime").JSX.Element;