import type { AddressDetails } from './address-details'; import type { CustomFieldValueSetConfiguration } from './custom-field-value-set-configuration'; import type { HolidayDetails } from './holiday-details'; export interface BranchConfiguration { address?: AddressDetails; customFieldValueSets?: Array; emailAddress?: string; holidays?: Array; id: string; name: string; notes?: string; phoneNumber?: string; state: BranchConfigurationStateEnum; } export declare const BranchConfigurationStateEnum: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type BranchConfigurationStateEnum = (typeof BranchConfigurationStateEnum)[keyof typeof BranchConfigurationStateEnum];