import React from 'react'; interface Props { children?: React.ReactNode; node?: any; } declare const UnifyPortal: { (props: Props): React.ReactPortal | null; propTypes: { children: import("prop-types").Validator; node: import("prop-types").Requireable; }; }; export default UnifyPortal;