import * as PageStyle from "../styles/page-style.js"; import * as SectionElement from "../section-elements/section-element.js"; export interface MasterPage { readonly style: PageStyle.PageStyle; readonly header: Array; readonly footer: Array; readonly frontHeader?: Array; readonly frontFooter?: Array; } export interface MasterPageProps { readonly style?: PageStyle.PageStyle; readonly header?: Array; readonly footer?: Array; readonly frontHeader?: Array; readonly frontFooter?: Array; } export declare function create(props?: MasterPageProps): MasterPage; //# sourceMappingURL=master-page.d.ts.map