import TerraElement from '../../internal/terra-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Dividers are used to visually separate or group elements. * @documentation https://terra-ui.netlify.app/components/divider * @status stable * @since 1.0 * * @cssproperty --terra-divider-color - The color of the divider. * @cssproperty --terra-divider-width - The width of the divider. * @cssproperty --terra-divider-spacing - The spacing of the divider. */ export default class TerraDivider extends TerraElement { static styles: CSSResultGroup; /** Draws the divider in a vertical orientation. */ vertical: boolean; connectedCallback(): void; handleVerticalChange(): void; }