import React, { FC } from 'react'; interface PortalProps { children?: React.ReactNode; conditional?: boolean; target?: HTMLElement; } export declare const Portal: FC; export {};