export interface Tariff { tariffType?: string; tariffValue?: number; } export interface SafeBoxCase { safeBoxCasesSize?: string; tariffs?: Tariff[]; } export interface SafeBoxCaseVolume { volume?: string; safeBoxCases?: SafeBoxCase[]; } export interface Branch { branchCode?: string; address?: string; gpsLatitude?: number; gpsLongitude?: number; safeBoxCaseVolumes?: SafeBoxCaseVolume[]; } export declare function useBranches(regionCode?: string): Branch[];