import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; export interface FileUploadItemPreviewBaseProps extends PolymorphicProps { } export interface FileUploadItemPreviewProps extends FileUploadItemPreviewBaseProps, /** * @vue-ignore */ HTMLAttributes { /** * The file type to match against. Matches all file types by default. * @default '.*' */ type?: string; } declare const _default: __VLS_WithTemplateSlots< DefineComponent & Readonly<{}>, { type: string; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };