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