import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A section container with flex column layout. * * @slot - Section content * @csspart section - The section element */ export declare class TcSection extends LitElement { sx: SxProps; static styles: import('lit').CSSResult; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-section': TcSection; } } //# sourceMappingURL=tc-section.d.ts.map