Use this file to discover all available pages before exploring further.
Interface defining the available methods and properties for the mfa-email-list screen
Example
export interface MfaEmailListMembers extends BaseMembers { screen: ScreenMembersOnMfaEmailList; /** * Selects an enrolled email address from the list * @param payload The options containing the selection action */ selectMfaEmail(payload: SelectMfaEmailOptions): Promise<void>; /** * Navigates back to the previous screen * @param payload Optional custom options to include with the request */ goBack(payload?: CustomOptions): Promise<void>;}