/// import { TextInput } from '../../@Types/FormStep'; import { StepProps } from '../Step'; export interface TextInputStepProps extends StepProps { /** The TextInputStep to display */ step: TextInput; /** The icon to display */ icon?: React.ReactNode; /** Default value to display */ defaultValue?: string; /** Custom Validation to display */ validation?: TextInput['validation']; /** Custom step Max char length */ maxLength?: number; } declare function TextInputStep(props: TextInputStepProps): JSX.Element; export default TextInputStep;