import React from 'react';
declare type PropsType = {
    id: string;
    children: React.ReactNode;
};
/**
 * @example
 * <Portal id="modal">
 *   <p>Thinking with portals</p>
 * </Portal>
 */
export declare const Portal: React.FC<PropsType>;
export {};
