import { type ReactNode, type RefObject } from 'react'; export declare function useDialogPortal(parent?: HTMLElement | RefObject, id?: string): { createPortal: (children: ReactNode) => import("react").ReactPortal | null; };