import { FdoRestaurant } from "@feedmepos/core/entity"; export declare function formatMenuVersion(date?: string | null): string; export declare function mapRestaurantWithMenu(restaurants: { _id: string; catalogId?: string | null; takeawayCatalog?: string | null; pickupCatalog?: string | null; additionalCatalogs?: string[] | null | undefined; updatedAt?: string; }[], businessRestaurants: FdoRestaurant[], catalogOptions: { label: string; value: string | null; }[]): { _default: string; _posTakeaway: string; _additionalCatalogs: string[]; _lastUpdate: string; _pickup: string; _canUsePickup: boolean; _posVersion: string; _id: string; catalogId?: string | null | undefined; takeawayCatalog?: string | null | undefined; pickupCatalog?: string | null | undefined; additionalCatalogs?: string[] | null | undefined; updatedAt?: string | undefined; }[];