import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A simple container component without default flex layout. * Use for wrapping content with custom styles. * * @slot - Content to display inside the box * @csspart box - The container element */ export declare class TcBox extends LitElement { sx: SxProps; static styles: import('lit').CSSResult; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-box': TcBox; } } //# sourceMappingURL=tc-box.d.ts.map