import { IPlace } from 'place/entities/place.entity'; export declare type AddressType = 'PERSONAL' | 'PROFESSIONAL' | 'BILLING'; export declare const useOrganizationAddress: (organizationId: string) => { loading: boolean; addAddress: (place: IPlace, type: AddressType) => Promise; removeAddress: (addressId: string) => Promise; };