import React from 'react'; import cx from 'classnames'; import styles from './Portal.module.scss'; export interface Props { /** The element to the will appear inside of the portal container */ children: React.ReactNode; /** Add a custom className. */ className?: Parameters[0]; /** Specific the root element that portal node should be append to */ mountedNode?: HTMLElement | null; } /** * * Portal is a util component that will allow elements to be rendered outside the DOM hierarchy of the parent component. * These are useful for popovers and modals. */ export declare const Portal: React.FC; export default Portal; export { styles }; //# sourceMappingURL=index.d.ts.map