import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A horizontal divider line with optional text. * * @csspart divider - The divider element (simple mode) * @csspart container - The container element (text mode) * @csspart line - The line elements (text mode) * @csspart text - The text element (text mode) * @attr {string} text - The optional divider text */ export declare class TcDivider extends LitElement { text: string; sx: SxProps; static styles: import('lit').CSSResult; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-divider': TcDivider; } } //# sourceMappingURL=tc-divider.d.ts.map