export type Scope = "openid" | "profile" | "email" | "wallet"; export declare const getScopesParams: (scopes: Scope[] | undefined) => string | undefined; export declare const getDelegationScopesParams: (scopes: Scope[] | undefined) => string | undefined;