import type { HTMLAttributes } from "svelte/elements"; export type DividerOrientation = "horizontal" | "vertical"; export type DividerVariant = "solid" | "dashed"; export type DividerProps = Omit, "class"> & { orientation?: DividerOrientation; /** Spacing scale step (0..12) applied as margin around the divider. */ spacing?: number; /** Optional label centered on a horizontal divider line. */ label?: string; variant?: DividerVariant; class?: string; }; declare const Divider: import("svelte").Component; type Divider = ReturnType; export default Divider; //# sourceMappingURL=Divider.svelte.d.ts.map