import type { ExtractPropTypes, PropType } from 'vue'; import type { Direction } from '../config-provider'; import type { AutoSizeType } from '../input/inputProps'; declare const editableProps: () => { prefixCls: StringConstructor; value: StringConstructor; maxlength: NumberConstructor; autoSize: { type: PropType; }; onSave: PropType<(val: string) => void>; onCancel: PropType<() => void>; onEnd: PropType<() => void>; onChange: PropType<(val: string) => void>; originContent: StringConstructor; direction: PropType; component: StringConstructor; }; export type EditableProps = Partial>>; declare const Editable: import("vue").DefineComponent<{ prefixCls: StringConstructor; value: StringConstructor; maxlength: NumberConstructor; autoSize: { type: PropType; }; onSave: PropType<(val: string) => void>; onCancel: PropType<() => void>; onEnd: PropType<() => void>; onChange: PropType<(val: string) => void>; originContent: StringConstructor; direction: PropType; component: StringConstructor; }, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; }; onSave: PropType<(val: string) => void>; onCancel: PropType<() => void>; onEnd: PropType<() => void>; onChange: PropType<(val: string) => void>; originContent: StringConstructor; direction: PropType; component: StringConstructor; }>>, {}, {}>; export default Editable;