import { InputHTMLAttributes } from 'react'; export interface InputProps extends Omit, 'onChange' | 'value'> { error?: boolean; clearable?: boolean; valid?: boolean; active?: boolean; textarea?: boolean; search?: boolean; onChange?: (event: { target: any; type?: any; }) => void; value?: string | number; width?: number | string; placeholder?: string; fontSize?: number; fontWeight?: number; color?: string; bold?: boolean; ariaLabel?: string; children?: React.ReactNode; } export declare const inputStyle: import("styled-components").FlattenInterpolation>; export declare const StyledInput: import("styled-components").StyledComponent<"input", any, { $error?: boolean | undefined; $icon?: boolean | undefined; $disabled?: boolean | undefined; $textarea?: boolean | undefined; $fontSize?: number | undefined; $fontWeight?: number | undefined; $color?: string | undefined; }, never>; export declare const NoStyleInput: import("react").ForwardRefExoticComponent>;