export class LayoutMain extends Layout { /** * @param {Partial} options */ constructor(options: Partial); /** * Options for this layout. * * ⚠️ changes effect all following pages using this layout * => mostly useful in recursive.data.js and local.data.js files * * If you want to change only the current page, use `setPageOptions` * * Example: append html to sidebar only for this page * @example * layout.setPageOptions(sourceRelativeFilePath, * { * sidebar__70: html` *

appended only on this page

* ` * } * ); * * @type {import('../types/layout.js').LayoutSidebarOptions} */ options: import('../types/layout.js').LayoutSidebarOptions; /** * @param {string} sourceRelativeFilePath * @param {Partial} options */ setPageOptions(sourceRelativeFilePath: string, options: Partial): void; } import { Layout } from "@rocket/engine"; //# sourceMappingURL=LayoutMain.d.ts.map