import { DynamicSection } from "./dynamic-section.js";
export type CreateDynamicSection = {
    create: (params: CreateDynamicSection.Params) => Promise<CreateDynamicSection.Model>;
};
export declare namespace CreateDynamicSection {
    type Params = Omit<DynamicSection, "id">;
    type Model = DynamicSection;
}
