import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory.js';
import { RootProps } from './swap.types.js';
export interface SwapRootBaseProps extends RootProps, PolymorphicProps {
}
export interface SwapRootProps extends SwapRootBaseProps, 
/**
 * @vue-ignore
 */
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<SwapRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SwapRootProps> & Readonly<{}>, {
    swap: boolean;
    lazyMount: boolean;
    unmountOnExit: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
