/**
 * Capture call site stack from v8.
 * https://github.com/v8/v8/wiki/Stack-Trace-API
 */
export declare class StackUtil {
    static getCalleeFromStack(withLine: boolean, stackIndex?: number): any;
}
