import { InputHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
interface InputProps {
/** @ignore */
accept?: InputHTMLAttributes['accept'];
/** @ignore */
capture?: InputHTMLAttributes['capture'];
/** @ignore */
disabled?: InputHTMLAttributes['disabled'];
/** @ignore */
form?: InputHTMLAttributes['form'];
/** @ignore */
multiple?: InputHTMLAttributes['multiple'];
/** @ignore */
name?: InputHTMLAttributes['name'];
}
type __VLS_Props = {
/** Whether the upload is displayed as block. */
block?: boolean;
/**
* Whether the upload is loading.
* It will be non-interactive in loading state.
*/
loading?: boolean;
} & InputProps;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
/** Content of the upload. */
default?: (props: {}) => any;
}> & {
/** Content of the upload. */
default?: (props: {}) => any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType;
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
select: (value: File | File[]) => any;
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
onSelect?: ((value: File | File[]) => any) | undefined;
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots;
export default _default;
type __VLS_WithTemplateSlots = T & {
new (): {
$slots: S;
};
};