type GoogleScopesInput = string | readonly string[] | null | undefined; declare const GSC_READ_SCOPE: "https://www.googleapis.com/auth/webmasters.readonly"; declare const GSC_WRITE_SCOPE: "https://www.googleapis.com/auth/webmasters"; declare const GSC_INDEXING_SCOPE: "https://www.googleapis.com/auth/indexing"; declare const GSC_SITE_VERIFICATION_SCOPE: "https://www.googleapis.com/auth/siteverification"; declare function hasGoogleScope(scopes: GoogleScopesInput, scope: string): boolean; export { GSC_INDEXING_SCOPE, GSC_READ_SCOPE, GSC_SITE_VERIFICATION_SCOPE, GSC_WRITE_SCOPE, hasGoogleScope };