import * as React from "react"; import type { MergeElementProps } from "../typings"; interface BaseProps { /** The content of the component. */ children?: React.ReactNode; } export declare type PortalDestinationProps = MergeElementProps<"div", BaseProps>; declare type Component = { (props: PortalDestinationProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const PortalDestination: Component; export default PortalDestination;