import type { Address } from './address'; export interface Centre { addresses?: Array
; assignedBranchKey?: string; creationDate?: string; encodedKey?: string; id?: string; lastModifiedDate?: string; meetingDay?: string; name?: string; notes?: string; state?: CentreStateEnum; } export declare const CentreStateEnum: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type CentreStateEnum = (typeof CentreStateEnum)[keyof typeof CentreStateEnum];