/** * @param originalScopes * @return scopes should contain all default scopes (`openid`, `offline_access` and `profile`) */ export declare const withReservedScopes: (originalScopes?: string[]) => string; /** * Alias of {@link withReservedScopes}. * * @deprecated Use {@link withReservedScopes} instead. */ export declare const withDefaultScopes: (originalScopes?: string[]) => string;