export type ProjectAccess = { apiKey: string; mode: 'api_key'; } | { mode: 'login'; projectId: string; }; export declare function getEnvApiKey(): null | string;