import { FC } from '@dineug/r-html';
export type EditInputProps = {
    class?: any;
    placeholder?: string;
    title?: string;
    edit: boolean;
    focus: boolean;
    width: number;
    value: string;
    autofocus?: boolean;
    onInput?: (event: InputEvent) => void;
    onBlur?: (event: FocusEvent) => void;
    onKeydown?: (event: KeyboardEvent) => void;
};
declare const EditInput: FC<EditInputProps>;
export default EditInput;
