import { OutboundHttp } from '@n8n/backend-network';
import type { User } from '@n8n/db';
import { CredentialsFinderService } from '../../../credentials/credentials-finder.service';
import { CredentialsService } from '../../../credentials/credentials.service';
export declare class BuilderModelLiveLookupService {
    private readonly credentialsService;
    private readonly credentialsFinderService;
    private readonly outboundHttp;
    constructor(credentialsService: CredentialsService, credentialsFinderService: CredentialsFinderService, outboundHttp: OutboundHttp);
    list(user: User, projectId: string, credentialId: string, credentialType: string, provider: string): Promise<Array<{
        name: string;
        value: string;
    }>>;
}
