import type { FC } from 'react'; import type { IRawResponse } from '@looker/sdk-rtl'; export type ResponseContent = IRawResponse | undefined; interface ShowHeadersProps { response: ResponseContent; } export declare const ResponseHeaders: FC; interface ResponseExplorerProps { response: ResponseContent; verb: string; path: string; } export declare const ResponseExplorer: FC; export {};