import { DynamicSection } from "./dynamic-section.js";
export type LoadAllDynamicSection = {
    loadAll: (params: LoadAllDynamicSection.Params) => Promise<LoadAllDynamicSection.Model>;
};
export declare namespace LoadAllDynamicSection {
    type Params = {
        page?: string;
    };
    type Model = DynamicSection[];
}
