/** * SvDivider - a separator line, horizontal or vertical, optionally with a * centered / start / end label. Theme-driven. Parity: Smart divider. * * ```svelte * * * * ``` */ import type { Snippet } from 'svelte'; type Props = { orientation?: 'horizontal' | 'vertical'; label?: string; /** Label position along a horizontal divider. */ align?: 'start' | 'center' | 'end'; dashed?: boolean; children?: Snippet; }; declare const SvDivider: import("svelte").Component; type SvDivider = ReturnType; export default SvDivider;