import { LitElement } from 'lit'; import '@material/web/divider/divider.js'; export declare class IxDivider extends LitElement { static styles: import("lit").CSSResult; /** * Indents the divider with equal padding on both sides. */ inset: boolean; /** * Indents the divider with padding on the leading side. */ insetStart: boolean; /** * Indents the divider with padding on the trailing side. */ insetEnd: boolean; render(): import("lit-html").TemplateResult<1>; }