1/** 2 * Copyright (c) 650 Industries. 3 * Copyright (c) Meta Platforms, Inc. and affiliates. 4 * 5 * This source code is licensed under the MIT license found in the 6 * LICENSE file in the root directory of this source tree. 7 */ 8import React from 'react'; 9import { LogBoxLog, StackType } from './Data/LogBoxLog'; 10export declare function LogBoxInspectorContainer(): JSX.Element | null; 11export declare function LogBoxInspector({ log, selectedLogIndex, logs, }: { 12 log: LogBoxLog; 13 selectedLogIndex: number; 14 logs: LogBoxLog[]; 15}): JSX.Element; 16export declare function ErrorOverlayBody({ onRetry }: { 17 onRetry: (type: StackType) => void; 18}): JSX.Element; 19export declare function ErrorOverlayBodyContents({ log, onRetry, }: { 20 log: LogBoxLog; 21 onRetry: (type: StackType) => void; 22}): JSX.Element; 23declare const _default: React.Component<object, {}, any>; 24export default _default; 25//# sourceMappingURL=ErrorOverlay.d.ts.map