import { FC } from 'react';
import { Container } from '@surveycake/rhooks';
export interface PortalProps {
    /**
     * HTMLElement, ref(createRef), component instance.
     */
    container?: Container;
}
declare const Portal: FC<PortalProps>;
export default Portal;
