import { Resources } from "../resources.js"; import * as MasterPage from "./master-page.js"; import { SectionElement } from "../section-elements/section-element.js"; export type Section = Resources & { readonly page: MasterPage.MasterPage; readonly id: string; readonly children: ReadonlyArray; }; export type SectionProps = Resources & { readonly page?: MasterPage.MasterPage; readonly id?: string; }; export declare function create(props?: SectionProps, children?: ReadonlyArray): Section; //# sourceMappingURL=section.d.ts.map