import type { Sections } from "../Interfaces/Sections";
interface PagePagination {
    offSet?: number;
    limit?: number;
}
interface IOptions {
    sectionId: string;
    pagePagination?: PagePagination;
}
export declare function getSections<T extends IOptions>(options: T): Promise<Sections>;
export {};
//# sourceMappingURL=getSections.d.ts.map