import { default as React } from 'react'; interface IFancyPortal { children: React.ReactNode; appendToID?: string; WrapperComponent?: React.ElementType; } export declare function FancyPortal({ children, appendToID, WrapperComponent }: IFancyPortal): React.ReactPortal | null; export default FancyPortal;