import { FunctionComponent } from 'react'; type Props = { block?: boolean; isTextArea?: boolean; placeholder?: string; rows?: number; setValue: (value: string) => void; value: string; style?: any; }; export declare const PreferenceText: FunctionComponent; export {};