import type { CallStack } from './types'; export type ParseCallStackFunction = (data: Error | { message: string; stack?: string; [x: string]: any; }, skipIdx?: number) => CallStack | undefined; export declare const defaultParseCallStack: ParseCallStackFunction;