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