import { EmptyEmit, VueNode } from "../_util/type.js"; import { DirectionType } from "../config-provider/context.js"; import * as vue328 from "vue"; import { CSSProperties, SlotsType } from "vue"; //#region src/typography/Editable.d.ts interface EditableProps { 'prefixCls': string; 'value': string; 'aria-label'?: string; 'onSave': (value: string) => void; 'onCancel': () => void; 'onEnd'?: () => void; 'className'?: string; 'style'?: CSSProperties; 'direction'?: DirectionType; 'maxLength'?: number; 'autoSize'?: any; 'enterIcon'?: VueNode; 'component'?: string; } declare const Editable: vue328.DefineSetupFnComponent>, EditableProps, vue328.PublicProps>; //#endregion export { EditableProps, Editable as default };