Interface defining the available methods and properties for the mfa-push-list screen
Example
export interface MfaPushListMembers extends BaseMembers { /** * Selects a registered device from the list to initiate MFA push. * @param payload The options containing the device index. */ selectMfaPushDevice(payload: SelectMfaPushDeviceOptions): Promise<void>; /** * Navigates back to the previous screen. * @param payload Optional custom options to include with the request. */ goBack(payload?: CustomOptions): Promise<void>;}