export declare class EvalThreadCredentialAllowlistService {
    private readonly byThread;
    private readonly testBypassByThread;
    set(threadId: string, credentialIds: string[], bypassCredentialTest?: string[]): void;
    get(threadId: string): string[] | undefined;
    shouldBypassTest(threadId: string, credentialId: string): boolean;
    clearThread(threadId: string): void;
}
