/** * Get call stack by creating a new Error. Use getCallStackFromString() to reuse an existing stack. */ export declare function getCallStack(): string; /** * Get call stack from an existing stack string, avoiding extra Error object creation. */ export declare function getCallStackFromString(stack: string): string;