export declare const BASE_SCOPES: readonly ["openid", "email", "profile"]; export declare const SERVICE_SCOPES: { readonly gmail: "https://www.googleapis.com/auth/gmail.modify"; readonly calendar: "https://www.googleapis.com/auth/calendar"; readonly docs: "https://www.googleapis.com/auth/documents"; readonly drive: "https://www.googleapis.com/auth/drive"; readonly slides: "https://www.googleapis.com/auth/presentations"; readonly sheets: "https://www.googleapis.com/auth/spreadsheets"; }; export type ServiceName = keyof typeof SERVICE_SCOPES; export interface AdditionalScope { /** The full OAuth scope URL. */ scope: string; /** Parent service — groups the doctor check and the `--check runtime.` filter. */ service: ServiceName; /** Human label for the capability this scope unlocks. */ capability: string; } export declare const ADDITIONAL_SCOPE_INFO: AdditionalScope[]; export declare const ADDITIONAL_SCOPES: string[]; export declare const SERVICES: ServiceName[]; export declare const REQUIRED_APIS: Record; export declare const ADDITIONAL_APIS: readonly ["driveactivity.googleapis.com"]; export declare function allScopes(): string[]; export declare function allApis(): string[];