import { FetchState, FetchStateAndError } from '@zeniai/client-epic-state'; export interface VerifyDeviceProps { resendVerifyDeviceOTPFetchState: FetchStateAndError; verifyOtpFetchState: FetchState; phoneNumber?: string; onCancelVerifyDevice: () => void; onResendOtp: () => void; onVerifyOtp: (code: string) => void; } declare const VerifyDevice: (props: VerifyDeviceProps) => import("react/jsx-runtime").JSX.Element; export default VerifyDevice;