export interface PortalActionProps {
    disabled?: boolean | undefined;
    container?: HTMLElement | undefined;
    getRootNode?: (() => ShadowRoot | Document | Node) | undefined;
}
export declare function portal(node: HTMLElement, props?: PortalActionProps): {
    destroy: () => void;
    update: (props?: PortalActionProps) => void;
};
