/// <reference types="react" />
import { MFADeviceType } from '@dynamic-labs/sdk-api-core';
type MFAAuthType = MFADeviceType | 'backupCode';
export type MfaOption = {
    Icon?: React.ReactNode;
    descriptionKey: string;
    labelKey: string;
    type: MFAAuthType;
};
export declare const getMfaOptions: (isInitialSetup: boolean) => MfaOption[];
export {};
