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 { IgnorePattern, LogData } from './Data/LogBoxData';
9import { ExtendedExceptionData } from './Data/parseLogBoxLog';
10export { LogData, ExtendedExceptionData, IgnorePattern };
11declare let LogBox: ILogBox;
12interface ILogBox {
13    install(): void;
14    uninstall(): void;
15    isInstalled(): boolean;
16    ignoreLogs(patterns: readonly IgnorePattern[]): void;
17    ignoreAllLogs(ignore?: boolean): void;
18    clearAllLogs(): void;
19    addLog(log: LogData): void;
20    addException(error: ExtendedExceptionData): void;
21}
22export default LogBox;
23//# sourceMappingURL=LogBox.web.d.ts.map