import { PureContainerBase, PureContainerConfig } from "../PureContainer"; import { Instance } from "../Instance"; export interface ContentConfig extends PureContainerConfig { /** Placeholder name where the content is rendered. */ name?: string; /** Placeholder name where the content is rendered. */ for?: string; } export declare class Content extends PureContainerBase { name?: string; for?: string; constructor(config?: ContentConfig); init(): void; } //# sourceMappingURL=Content.d.ts.map