import React from 'react'; import { MfaMethod } from '../../mfa'; interface MfaCodeInputProps { style?: any; value: string; onChange: (value: string) => void; selectedMethod?: MfaMethod; } declare const MfaCodeInput: ({ style, value, onChange, selectedMethod, }: MfaCodeInputProps) => React.JSX.Element; export default MfaCodeInput;