UNPKG

@blockstack/ui

Version:

Blockstack UI components built using React and styled-components with styled-system.

16 lines (15 loc) 459 B
import * as React from 'react'; interface PortalManagerContext { node: HTMLElement; zIndex?: number; } declare const usePortalManager: () => PortalManagerContext; export { usePortalManager }; export interface PortalManagerProps { children?: React.ReactNode; zIndex?: number; } export declare function PortalManager(props: PortalManagerProps): JSX.Element; export declare namespace PortalManager { var displayName: string; }