import type { ContactPageProps } from "./ContactPage.types"; declare const useContactPage: (props: ContactPageProps) => { data: { contacts: { phone: string; id?: string | undefined; contactPerson?: string | null | undefined; userId?: string | undefined; terreiroId?: string | null | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; createdByUserId?: string | undefined; }[]; validationErrors: Record; isLoading: boolean; isDirty: boolean; isFormValid: boolean; canSave: boolean; enablePhoneValidation: boolean; }; fns: { handleBack: () => void; handleChange: (index: number, e: React.ChangeEvent) => void; handleSave: () => void; handleAddContact: () => void; handleRemoveContact: (index: number) => void; }; }; export default useContactPage;