import type { HTMLAttributes, InputHTMLAttributes } from 'vue'; import type { InputAutoHeight, InputType } from './common'; export declare function resizeTextarea(el: HTMLTextAreaElement, autoHeight?: InputAutoHeight): void; export declare function mapInputType(type: InputType, inputmode?: HTMLAttributes['inputmode']): { type: InputHTMLAttributes['type']; inputmode?: HTMLAttributes['inputmode']; };