` with appropriate styling
*
* @example
* ```html
*
* Left content
*
* Right content
*
* ```
* ```vue
*
*
* Left content
*
* Right content
*
*
* ```
* ```jsx
* export default function Demo() {
* return (
*
* Left content
*
* Right content
*
* );
* }
* ```
*/
export declare class SkyDivider extends LitElement {
/**
* The color of the divider.
* @public
*/
color: string;
/**
* The thickness of the divider (e.g., `"1px"`, `"2px"`).
* @public
*/
thickness: string;
/**
* The margin around the divider.
* @public
*/
margin: string;
/**
* Divider orientation.
* @public
*/
direction: SkyDividerDirection;
/**
* Whether the divider should be inset (indented).
* @public
*/
inset: boolean;
/**
* The height of a vertical divider.
* @public
*/
height: string;
/** Named prop preset from nearest `sky-config-provider`. */
preset: string;
private _presets;
static styles: import("lit").CSSResult;
/** @protected */
updated(changedProperties: Map
): void;
/**
* Gets the current computed color of the divider.
* @returns Resolved color value
* @public
*/
getComputedColor(): string;
/**
* Gets the current computed thickness of the divider.
* @returns Resolved thickness value
* @public
*/
getComputedThickness(): string;
/** @protected */
render(): import("lit-html").TemplateResult<1>;
}