interface Props { value: string; onChange: (value: string) => void; doubleClickMode?: boolean; disabled?: boolean; onError?: () => void; errorMessage?: string; } export declare const EditableArea: (props: Props) => JSX.Element; export {};