Interface describing the members of the Confirmation screen.
Example
export interface ConfirmationMembers extends BaseMembers { /** * Proceeds with account creation after OTP verification. * @param payload Optional custom options to include with the request. */ proceedToSignup(payload?: CustomOptions): Promise<void>; /** * Declines auto-signup and returns the user to the login screen without creating an account. * @param payload Optional custom options to include with the request. */ goBack(payload?: CustomOptions): Promise<void>;}