import React from 'react';
import type { PortalProps } from './types';
export default function Portal({ zIndex, children, mountStrategy, isClosed, }: PortalProps): React.JSX.Element | null;
