import { Decorator } from '../support_decorators/decorator.js'; export default class Layout extends Decorator { name: string; props: Record; constructor(name?: string, props?: Record); boot(): Promise; wrap(view: any, html: string): Promise; }