import { PageSortingEnum } from '../constants/enum/Page'; declare class YouCanPages { getPages({ limit, page, sort_field, q, }: { limit?: number; page?: number; sort_field?: PageSortingEnum; q?: string; }): Promise<{ data: IPageResponse[]; meta: IMetaResponse; }>; getAllPages(): Promise<{ data: IPageResponse[]; }>; getPageById(pageId: string): Promise; createPage(page: IPage): Promise; updatePage(pageId: string, page: IPage): Promise; deletePage(pageId: string): Promise; } export default YouCanPages;