export class Sections extends Client { constructor(options: any); jsonAPINames: string[]; sideLoadMap: { field: string; name: string; dataset: string; }[]; list(): Promise; listByCategory(categoryID: any): Promise; listWithLocale(locale: any): Promise; listByCategoryByLocale(locale: any, categoryID: any): Promise; show(sectionID: any): Promise; showWithLocale(locale: any, sectionID: any): Promise; create(categoryId: any, section: any): Promise; createWithLocale(locale: any, categoryId: any, section: any): Promise; update(sectionID: any, section: any): Promise; updateWithLocale(locale: any, sectionID: any, section: any): Promise; updateSourceLocale(sectionID: any, sourceLocale: any): Promise; delete(sectionID: any): Promise; } import { Client } from "../client";