import { InputHTMLAttributes } from 'react';
export interface SecondaryInputProps 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;
fixedHeight?: boolean;
color?: string;
bold?: boolean;
ariaLabel?: string;
children?: React.ReactNode;
}
export declare const SecondaryInput: import("react").ForwardRefExoticComponent>;