import SgdsElement from "../../base/sgds-element"; /** * @summary A divider is a thin line that groups content in lists and layouts. They bring clarity to a layout by grouping and dividing content in close proximity. */ export declare class SgdsDivider extends SgdsElement { static styles: import("lit").CSSResult[]; /** Sets the orientation of divider to vertical. Defaults to horizontal */ orientation: "horizontal" | "vertical"; /** Sets the orientation of divider to vertical. Defaults to false */ thickness: "thin" | "thick" | "thicker"; connectedCallback(): void; } export default SgdsDivider;