import { CSSResultArray, PropertyValues, TemplateResult } from 'lit'; import { LuzmoElement } from '../../utils/base'; declare const LuzmoDivider_base: typeof LuzmoElement & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; }; /** * @element luzmo-divider */ export declare class LuzmoDivider extends LuzmoDivider_base { static styles: CSSResultArray; /** * Set the orientation of the divider */ vertical: boolean; /** * Set the color of the divider */ staticColor?: 'white' | 'black'; protected render(): TemplateResult; protected firstUpdated(changed: PropertyValues): void; protected updated(changed: PropertyValues): void; } export {};