export declare type JsonObject = { [key: string]: any; } | null; export declare type Resolver = (isSuccess: boolean) => void; export declare type EventCallback = ((resolve: Resolver) => void) | null; export declare type EventType = { type: string; action: string; payload: string; }; export interface GetListPayload { localId?: string; phoneNumber?: string; countryCode?: string; credifyId?: string; } export declare enum Environment { Production = "production", Sandbox = "sandbox", UAT = "uat", SIT = "sit", Dev = "development", Local = "localhost" }