import React from 'react';
import { BoxProps } from '@mantine/core';
export type OtpData = {
    phone: string;
    type: 'whatsapp' | 'phone' | 'zalo';
};
export declare const OtpBlock: ({ ...rest }: BoxProps) => React.JSX.Element;
