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 { StackFrame as UpstreamStackFrame } from 'stacktrace-parser'; 9type SymbolicatedStackTrace = any; 10type StackFrame = UpstreamStackFrame & { 11 collapse?: boolean; 12}; 13export type Stack = StackFrame[]; 14export declare function deleteStack(stack: Stack): void; 15export declare function symbolicate(stack: Stack): Promise<SymbolicatedStackTrace>; 16export {}; 17//# sourceMappingURL=LogBoxSymbolication.d.ts.map