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