import React from "react"; import { type PortalProps } from "../../portal"; import { type DialogPopupInternalProps } from "./DialogPopupInternal"; type DialogPopupProps = DialogPopupInternalProps & Pick & { children: React.ReactNode; }; /** * @see 🏷️ {@link DialogPopupProps} * @example * ```jsx * * * ... * * * ``` */ declare const DialogPopup: React.ForwardRefExoticComponent & { children: React.ReactNode; } & React.RefAttributes>; export { DialogPopup }; export type { DialogPopupProps };