export interface CallerLocation {
    filePath: string;
    line: number;
    column: number;
}
/**
 * Analyzes the stack trace to find the file and coordinates
 * where this function was called.
 */
export declare function getCallerLocation(): CallerLocation;
