import React from 'react';
import { useForm } from '@mantine/form';
export declare const OtherSetup: ({ form, needEmail, isEmailDisable, loading, tracking, }: {
    form: ReturnType<typeof useForm<{
        phone: string;
        email: string;
        name: string;
        dob: string;
        gender: string;
    }, any>>;
    needPhone?: boolean;
    skipPhone?: boolean;
    needEmail?: boolean;
    isEmailDisable?: boolean;
    isPhoneDisabled?: boolean;
    loading?: boolean;
    tracking?: {
        category: string;
        action: string;
    };
}) => React.JSX.Element;
