import { type InputProps, type InputSlots } from './common';
declare function __VLS_template(): Readonly<InputSlots> & InputSlots;
declare const __VLS_component: import("vue").DefineComponent<InputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    [x: string]: any;
} & {
    [x: string]: any;
}, string, import("vue").PublicProps, Readonly<InputProps> & Readonly<{
    [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
}>, {
    value: string;
    rootStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
    rootClass: string;
    modelValue: string | number;
    size: "mini" | "small" | "medium" | "large";
    disabled: boolean;
    type: "number" | "text" | "tel" | "idcard" | "digit" | "safe-password" | "nickname" | "password" | "textarea";
    fixed: boolean;
    readonly: boolean;
    inlaid: boolean;
    validateEvent: boolean;
    placeholder: string;
    placeholderStyle: string;
    placeholderClass: string;
    maxlength: number;
    focus: boolean;
    cursorSpacing: number;
    cursor: number;
    confirmType: "send" | "search" | "next" | "go" | "done";
    confirmHold: boolean;
    selectionStart: number;
    selectionEnd: number;
    adjustPosition: boolean;
    holdKeyboard: boolean;
    ignoreCompositionEvent: boolean;
    inputmode: "none" | "text" | "decimal" | "numeric" | "tel" | "search" | "email" | "url";
    enableNative: boolean;
    autoBlur: boolean;
    alwaysEmbed: boolean;
    safePasswordCertPath: string;
    safePasswordLength: string;
    safePasswordTimeStamp: string;
    safePasswordNonce: string;
    safePasswordSalt: string;
    safePasswordCustomHash: string;
    randomNumber: boolean;
    password: boolean;
    controlled: boolean;
    alwaysSystem: boolean;
    autoHeight: boolean;
    showConfirmBar: boolean;
    disableDefaultPadding: boolean;
    clearable: boolean;
    showClearOnlyFocus: boolean;
    showCount: boolean;
    borderless: boolean;
    focused: boolean;
    minHeight: string;
    showEye: boolean;
    inputMinHeight: boolean;
    internalPrepend: number;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
