import { RetailDepartmentType } from './retailDepartmentType'; export type RetailZoneCategory = 'sales_floor' | 'fitting_room' | 'checkout' | 'exit' | 'storage'; export declare class RetailZone { id: string; storeId: string; name: string; code: string; category: RetailZoneCategory; department?: string | null; departmentTypeId?: string | null; sortOrder: number; capacity?: number | null; coordinates?: object | null; color?: string | null; createdAt: Date; updatedAt: Date; departmentType?: RetailDepartmentType | null; }