import { default as React } from 'react'; import { InputTheme } from '../Input/Input.types'; export type StateType = 'default' | 'success' | 'error'; export interface StyledInputProps extends Omit, 'size'> { className?: string; theme?: InputTheme; ref?: React.Ref; state?: StateType; } declare function StyledInput(props: StyledInputProps): import("react/jsx-runtime").JSX.Element; export default StyledInput;