/** * SvEmptyState - a centered placeholder for empty lists, no-results, and blank * screens: an icon/illustration, a title, a description, and an action slot. * Theme-driven. Parity: Smart empty / no-data states. * * ```svelte * * New order * * ``` */ import type { Snippet } from 'svelte'; type Props = { title?: string; description?: string; /** Tighter padding (for empty dropdowns / small panels). */ compact?: boolean; /** Custom icon / illustration (overrides the default). */ icon?: Snippet; /** Action buttons / links. */ children?: Snippet; }; declare const SvEmptyState: import("svelte").Component; type SvEmptyState = ReturnType; export default SvEmptyState;