import { HTMLAttributes, UnwrapRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
import { UseFileUploadReturn } from './use-file-upload';
interface RootProviderProps {
    value: UnwrapRef<UseFileUploadReturn>;
}
export interface FileUploadRootProviderBaseProps extends RootProviderProps, PolymorphicProps {
}
export interface FileUploadRootProviderProps extends FileUploadRootProviderBaseProps, 
/**
 * @vue-ignore
 */
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<FileUploadRootProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FileUploadRootProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
