import type { AnchorHTMLAttributes as VueAnchorHTMLAttributes, ButtonHTMLAttributes as VueButtonHTMLAttributes, FormHTMLAttributes as VueFormHTMLAttributes, ImgHTMLAttributes as VueImgHTMLAttributes, InputHTMLAttributes as VueInputHTMLAttributes, TableHTMLAttributes as VueTableHTMLAttributes, TextareaHTMLAttributes as VueTextareaHTMLAttributes } from 'vue';
export type AnchorHTMLAttributes = Pick;
export type ButtonHTMLAttributes = Pick;
export type FormHTMLAttributes = Pick;
export type ImgHTMLAttributes = Pick;
export type InputHTMLAttributes = Pick & {
autocomplete?: 'on' | 'off' | (string & {});
};
export type TableHTMLAttributes = Pick;
export type TextareaHTMLAttributes = Pick;