export declare const styles: (theme: any) => { /* Styles applied to the root element. */ root: { display: string; alignItems: string; "&$alternativeLabel": { flexDirection: string; }; "&$disabled": { cursor: string; }; }; /* Styles applied to the root element if `orientation="horizontal"`. */ horizontal: {}; /* Styles applied to the root element if `orientation="vertical"`. */ vertical: {}; /* Styles applied to the `Typography` component which wraps `children`. */ label: { color: any; "&$active": { color: any; fontWeight: number; }; "&$completed": { color: any; fontWeight: number; }; "&$alternativeLabel": { textAlign: string; }; "&$error": { color: any; }; }; /* Pseudo-class applied to the `Typography` component if `active={true}`. */ active: {}; /* Pseudo-class applied to the `Typography` component if `completed={true}`. */ completed: {}; /* Pseudo-class applied to the root element and `Typography` component if `error={true}`. */ error: {}; /* Pseudo-class applied to the root element and `Typography` component if `disabled={true}`. */ disabled: {}; /* Styles applied to the `icon` container element. */ iconContainer: { flexShrink: number; display: string; paddingRight: number; "&$alternativeLabel": { paddingRight: number; }; }; /* Pseudo-class applied to the root and icon container and `Typography` if `alternativeLabel={true}`. */ alternativeLabel: {}; /* Styles applied to the container element which wraps `Typography` and `optional`. */ labelContainer: { width: string; }; }; /** * Explicit any export to avoid non-portable inferred React types in declaration output. * @type {any} */ declare const StepLabelExport: any; export default StepLabelExport; //# sourceMappingURL=StepLabel.d.ts.map