///
export declare type CaEditableInputProps = {
className?: string;
value: string;
onOk?: (value: string) => Promise;
disabled?: boolean;
};
export declare function CaEditableInput({ className, value, disabled, onOk }: CaEditableInputProps): JSX.Element;
export default CaEditableInput;