import React from 'react'; type PortalProps = { selector: string; enabled?: boolean; children: React.ReactNode; }; export declare const Portal: ({ selector, enabled, children }: PortalProps) => React.JSX.Element; export {};