import OrderappMerchantApi from './index'; export default class CategoryApi { api: OrderappMerchantApi; constructor(api: OrderappMerchantApi); getCategories(): Promise; createCategory(category: IAppCategory): Promise; updateCategoryTranslate(categoryId: string, data: { name: string; desc: string; locale: string; }): Promise; updateCategoryParent(categoryId: string, parentId: string): Promise; updateCategoryDays(categoryId: string, weekdays: WeekDays): Promise; updateCategoryTime(categoryId: string, data: { start: ITimeslot; end: ITimeslot; }): Promise; updateWaiterOnly(categoryId: string, waiterOnly: boolean): Promise; updateTakeawayOnly(categoryId: string, takeawayOnly: boolean): Promise; updateCode(categoryId: string, code: string): Promise; updateCategoryEnable(categoryId: string, enable: boolean): Promise; deleteCategory(categoryId: string): Promise; getCategoryTag(): Promise; createCategoryTag(categoryTag: { name: string; categoryIds: string[]; orderCutOffMins: number; }): Promise; updateCategoryTag(categoryTag: ICategoryTag): Promise; deleteCategoryTag(id: string): Promise; reorderCategoryTag(categoryTagIds: string[]): Promise; } //# sourceMappingURL=Category.d.ts.map