import * as React from "react"; export interface InputProps extends React.InputHTMLAttributes { label?: string; description?: string; helperText?: string; errorMessage?: string; inputSize?: 'xs' | 'sm' | 'base' | 'l' | 'xl'; actionText?: string; startIcon?: React.ReactElement; endIcon?: React.ReactElement; error?: boolean; } //# sourceMappingURL=Input.types.d.ts.map