import { PropertyValues } from 'lit'; import { SpectrumElement } from '../../shared/base'; declare const DividerBase_base: typeof SpectrumElement & { new (...args: any[]): import('../../shared/base').SizedElementInterface; prototype: import('../../shared/base').SizedElementInterface; } & import('../../shared/base/sizedMixin').SizedElementConstructor; /** * @element swc-divider */ export declare abstract class DividerBase extends DividerBase_base { /** * Whether the divider is vertical. If false, the divider is horizontal. The default is false. */ vertical: boolean; /** * The static color variant to use for the divider. */ staticColor?: 'white' | 'black'; protected firstUpdated(changed: PropertyValues): void; protected updated(changed: PropertyValues): void; } export {};