import { FRoot, FDividerState } from "@nonfx/flow-core"; export type FFieldSeparatorState = FDividerState; export declare class FFieldSeparator extends FRoot { /** * css loaded from scss file */ static styles: import("lit").CSSResult[]; /** * @attribute comments baout title */ label?: string; /** * @attribute The solid variant is the default. */ type?: "solid" | "dashed" | "dotted"; /** * @attribute The medium size is the default. */ size?: "large" | "medium"; /** * @attribute The state of Divider helps in indicating the degree of emphasis. By default it is default state. */ state?: FFieldSeparatorState; /** * @attribute The state of Divider helps in indicating the degree of emphasis. By default it is default state. */ direction?: "vertical" | "horizontal"; render(): import("lit-html").TemplateResult<1>; } /** * Required for typescript */ declare global { export interface HTMLElementTagNameMap { "f-field-separator": FFieldSeparator; } }