UNPKG

@redocly/theme

Version:

Shared UI components lib

7 lines (6 loc) 254 B
import React from 'react'; import type { PropsWithChildren, JSX } from 'react'; export type PortalProps = { mountId?: string; }; export declare function Portal({ children, mountId, }: PropsWithChildren<PortalProps>): React.ReactPortal | JSX.Element;