import type { StackFrame } from '../../types/internal';
/**
 * For using arguments.callee we need to eval this function in non-strict mode.
 */
declare const getStackTraceBody: () => readonly StackFrame[] | undefined;
/**
 * Get V8 inner stack trace.
 * {@link https://www.npmjs.com/package/callsite}
 */
export declare const getStackTrace: typeof getStackTraceBody;
export {};
