import { PropType } from 'vue';
import type { Resize } from './interface';
export declare const Props: {
    readonly modelValue: StringConstructor;
    readonly placeholder: StringConstructor;
    readonly max: PropType<string | number>;
    readonly rows: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly cols: StringConstructor;
    readonly resize: {
        readonly type: PropType<Resize>;
        readonly default: () => Resize;
        readonly validator: (v: Resize) => boolean;
    };
    readonly disabled: BooleanConstructor;
    readonly autofocus: BooleanConstructor;
    readonly name: StringConstructor;
};
