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