import { DuetColor, DuetMargin, DuetTheme } from "../../common-types"; import { ThemeableComponent } from "../../common/themeable-component"; export type DuetDividerMargin = DuetMargin | "small"; export declare class DuetDivider implements ThemeableComponent { /** * Reference to host HTML element. */ element: HTMLElement; /** * Theme of the divider. */ theme: DuetTheme; /** * Controls the margin of the component. */ margin: DuetDividerMargin; /** * Custom color, as a design token entered in camelCase or kebab-case. * Example: "color-primary". */ color: DuetColor; /** * Component lifecycle events. */ componentWillLoad(): void; /** * render() function * Always the last one in the class. */ render(): any; }