import { AuthenticationTypes, ClientEntity, UserEntity } from "../types"; export type AuthorizationClientResponse = Pick; export type AuthorizationUserResponse = Pick & { userId: string; }; export declare class ValidateUserAccessDTO { domain: string; secret: string; requestClientId: string; contextClientId: string; country: string; currency: string; token: string; } export declare class ValidateUserAccessResponseDTO { domain: string; country: string; currency: string; locale: string; requestClientId: string; contextClientId: string; contextClient: AuthorizationClientResponse; requestClient: AuthorizationClientResponse; authenticationType: AuthenticationTypes; requestUserId: string; contextUserId: string; requestUser: AuthorizationUserResponse; contextUser: AuthorizationUserResponse; permissions: string; }