export declare const OAUTH_SCOPE_OPTIONS: readonly ["read", "write"]; type OAuthScopesTuple = typeof OAUTH_SCOPE_OPTIONS; export type OAuthScopeOption = OAuthScopesTuple[number]; export type OAuthScope = OAuthScopeOption | OAuthScopeOption[]; export {};