import SgdsElement from "../../base/sgds-element"; /** * * @summary Description Lists are used with description list group as list components. A description list (often referred to as a “definition list”) is a type of list used in web design and documentation to pair terms with their corresponding descriptions or values. * * @slot default - The slot for the label * @slot data - The slot for the data */ export declare class SgdsDescriptionList extends SgdsElement { static styles: import("lit").CSSResult[]; private readonly attrId; private readonly componentId; /** Makes the label and the data stacked */ stacked: boolean; /** Changes the border bottom styles for bordered description list group */ bordered: boolean; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } export default SgdsDescriptionList;