import type { Ref } from 'vue'; export interface PortalContextProps { shouldRender: Ref; inTriggerContext: boolean; } export declare function useProvidePortal(instance: any, config?: { inTriggerContext: boolean; }): void; export declare function useInjectPortal(): { shouldRender: import("vue").ComputedRef; };