import * as React from 'react'; import { StandardProps } from '..'; import { Orientation } from '../Stepper'; import { StepButtonIcon } from '../StepButton'; import { StepIconProps } from '../StepIcon'; export interface StepLabelProps extends StandardProps, StepLabelClasskey> { active?: boolean; alternativeLabel?: boolean; children: React.ReactNode; completed?: boolean; disabled?: boolean; error?: boolean; icon?: StepButtonIcon; last?: boolean; optional?: React.ReactNode; orientation?: Orientation; StepIconComponent?: React.ElementType; StepIconProps?: Partial; } export type StepLabelClasskey = | 'root' | 'horizontal' | 'vertical' | 'active' | 'completed' | 'alternativeLabel' | 'error' | 'disabled' | 'label' | 'iconContainer' | 'labelContainer'; /** * * Demos: * * - [Steppers](https://material-ui.com/components/steppers/) * * API: * * - [StepLabel API](https://material-ui.com/api/step-label/) */ declare const StepLabel: React.ComponentType; export default StepLabel;