import { LitElement, TemplateResult } from "lit-element"; import { AriaRole } from "../util/aria"; /** * Properties of the divider. */ export interface IDividerProperties { vertical: boolean; } /** * Thin line that groups content in lists and layouts. * @cssprop --divider-color - Color of the divider * @cssprop --divider-size - Width or height of the divider */ export declare class Divider extends LitElement implements IDividerProperties { static styles: import("lit-element").CSSResult[]; /** * Role of the backdrop. * @attr */ role: AriaRole; /** * Makes the divider vertical. * @attr */ vertical: boolean; /** * Returns the template of the element. */ protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { "wl-divider": Divider; } }