import ShoelaceElement from '../../internal/shoelace-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Use bar elements for vertical alignment and horizontal distribution. * @documentation https://shoelace.style/components/bar * @status experimental * @viur 0.7 * @since 2.0 * * * @slot left - elements placed left * @slot center - elements placed center * @slot right - elements placed right * * @csspart left - The component's left wrapper. * @csspart center - The component's center wrapper. * @csspart right - The component's right wrapper. * */ export default class SlBar extends ShoelaceElement { static styles: CSSResultGroup; render(): import("lit-html").TemplateResult<1>; }