import { LitElement } from 'lit'; declare const NrContentElement_base: (new (...args: any[]) => import("@nuralyui/common/mixins").DependencyAware) & (new (...args: any[]) => import("@nuralyui/common/mixins").ThemeAware) & (new (...args: any[]) => import("@nuralyui/common/mixins").EventHandlerCapable) & (new (...args: any[]) => import("packages/common/src/shared/base-mixin.js").LightDomContent) & typeof LitElement; /** * # Content Component * * The content layout component with default styling. * Must be placed inside a Layout component. * * @element nr-content * * @slot - Default slot for main content * * @csspart content - The content container element * * @example * ```html * * *

Main Content

*

Your content goes here...

*
*
* ``` */ export declare class NrContentElement extends NrContentElement_base { static styles: import("lit").CSSResult; static useShadowDom: boolean; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nr-content': NrContentElement; } } export {}; //# sourceMappingURL=content.component.d.ts.map