import { CategorySortingEnum } from '../constants/enum/Category'; declare class YouCanCategories { getCategories({ limit, page, sort_field, q, show_in_collection, only_top_level, }: { limit?: number; page?: number; sort_field?: CategorySortingEnum; q?: string; show_in_collection?: boolean; only_top_level?: boolean; }): Promise<{ data: ICategoryResponse[]; meta: IMetaResponse; }>; getAllCategories(): Promise<{ data: ICategoryResponse[]; }>; getCategoryById(categoryId: string): Promise; createCategory(category: ICategory): Promise; updateCategory(categoryId: string, category: ICategory): Promise; deleteCategory(categoryId: string): Promise; } export default YouCanCategories;