/** * The input data to be sent for identifying the user using email, phone, etc. */ export declare class UserIdentifierInput { setting_responses: SettingResponse[]; link: string; /** * @param userId - The id to be used for identifying the user. */ constructor(userId: string); } /** * The response received from the user for identification purpose. */ declare class SettingResponse { key: string; response_data: ResponseData; /** * @param responseText - The text entered by the user. */ constructor(responseText: string); } /** * The raw response data in case of identification using email. */ declare class ResponseData { text_data: TextData; /** * @param email - The email id of the user. */ constructor(email: string); } /** * The raw, elemental text data. */ declare class TextData { result: string; /** * @param text - The text data entered. */ constructor(text: string); } export {};