import { AuthenticationClientOptions } from 'auth0'; export type Auth0UserInfoClientConfig = { domain: AuthenticationClientOptions['domain']; }; export interface IAuth0UserInfoClient { getProfile: (accessToken: string) => Promise; } export declare class Auth0UserInfoClient implements IAuth0UserInfoClient { private userInfoClient; constructor({ domain }: { domain: Auth0UserInfoClientConfig['domain']; }); getProfile: (accessToken: string) => Promise>; }