import type { GraphNode } from './v8-profiler'; export type Override = { include: boolean; match: string; }; export declare function getOverridesPath(env: typeof process.env, isWindows: boolean, apiKey: string | null): string | null; export declare function makeOverrides(lines: string[]): Override[]; export declare function allowedByOverrides(graphNode: GraphNode): boolean;