/*! Strand UI | MIT License | dillingerstaffing.com */ import type { ComponentChildren, JSX } from "preact"; export interface DividerProps extends Omit, "label" | "ref"> { /** Separator direction. */ direction?: "horizontal" | "vertical"; /** `gradient` fades the line out at both ends. */ variant?: "line" | "gradient"; /** Content set into the middle of a horizontal line. */ label?: ComponentChildren; className?: string; } /** * Separator line, horizontal or vertical, optionally labelled. * * @example * */ export declare const Divider: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Divider.d.ts.map