import { Settings, SupportedFrameworks } from '../types/index.js'; type Credentials = { apiKeys: ApiKey[]; projectId: string; }; type ApiKey = { key: string; type: 'development' | 'production'; }; export declare function retrieveCredentials(settings: Settings, keyType: 'development' | 'production' | 'all'): Promise; export declare function generateCredentialsSession(url: string, keyType: 'development' | 'production' | 'all'): Promise<{ sessionId: string; }>; export declare function areCredentialsSet(): string | undefined; export declare function setCredentials(credentials: Credentials, framework?: SupportedFrameworks, cwd?: string): Promise; export {};