import { type ReactNode } from 'react';
export interface PortalProps {
    target?: string | HTMLElement | null;
    children?: ReactNode;
}
export declare function Portal({ target, children }: PortalProps): import("react").ReactPortal | null;
//# sourceMappingURL=Portal.d.ts.map