import { FC } from 'react'; interface OverlayProps { title: string; json: object; } interface ViewJsonOverlayHook { showJsonOverlay: () => void; JsonOverlay: FC; } export declare function useViewJsonOverlay(): ViewJsonOverlayHook; export {};