import type { MandatoryProps } from './utils';
export type OtpErrorEvent = MandatoryProps & {
    error_code: 'otp-invalid' | 'otp-expired' | 'otp-too-many-attempts' | 'otp-network-error' | 'otp-user-not-found';
};
