interface TestResult { pass: boolean; message?: string; } export declare class EndpointTracker { processedEndpoints: { [key: string]: TestResult; }; } export default class EndpointTrackerSingleton { private static _instance; private static _endpoints; static get instance(): EndpointTracker; static reset(): void; static get endpoints(): { [key: string]: any; }; static get processedEndpoints(): { [key: string]: TestResult; }; static get unprocessedEndpoints(): string[]; } export {}; //# sourceMappingURL=endpoint-tracker.d.ts.map