import { FC } from 'react'; export declare const InputString: FC<{ value?: string; change?: (value: string) => void; placeholder?: string; disabled?: boolean; password?: boolean; }>;