import { PropType } from 'vue'; import { Arrayable } from '@vueuse/core'; export type Autosize = boolean | Partial<{ minRows: number; maxRows: number; }>; declare const _default: { value: PropType>; placeholder: PropType>; type: StringConstructor; disabled: BooleanConstructor; prefix: StringConstructor; suffix: StringConstructor; addonBefore: StringConstructor; addonAfter: StringConstructor; pair: BooleanConstructor; separator: { type: StringConstructor; default: string; }; autofocus: BooleanConstructor; clearable: BooleanConstructor; autosize: PropType; }; export default _default;