import { type WorkBook } from "xlsx"; import { type MenuV3 } from "@/helper/feedmeModify/definitions"; export interface ExportMenuDataFormat { _id: string; code: string; name: string; variantKey: string; vcStatus: string; variant: string; price: number | string; perXUnit: string; unit: string; categoryName: string; description: string; addonGroup: string; [key: string]: string | number; } export declare function transformData(menu: MenuV3, modified?: boolean): ExportMenuDataFormat[]; export declare function menuToExcel(menu: MenuV3): WorkBook;