import type { Address } from './address';
import type { Holiday } from './holiday';
export interface Branch {
addresses?: Array
;
branchHolidays?: Array;
creationDate?: string;
emailAddress?: string;
encodedKey?: string;
id: string;
lastModifiedDate?: string;
name: string;
notes?: string;
phoneNumber?: string;
state?: BranchStateEnum;
}
export declare const BranchStateEnum: {
readonly Active: "ACTIVE";
readonly Inactive: "INACTIVE";
};
export type BranchStateEnum = (typeof BranchStateEnum)[keyof typeof BranchStateEnum];