import type { EntityType } from '@/client'; import type { BusinessUuid } from '@/models/business/businessUuid.model'; import type { IndividualUuid } from '@/models/individual/individualUuid.model'; export declare function useContactCreateDialog(): { close: () => void; open: (options?: { entityType?: EntityType | null; onCreate?: (uuid: BusinessUuid | IndividualUuid, name: string, type: EntityType) => void; }) => void; };