/** * SvCollapsible - a single show/hide region with an accessible trigger (the * standalone form of one accordion item). The header toggles the panel with a * rotating chevron; the panel animates its height open/closed and respects * `prefers-reduced-motion`. * * ```svelte * * ...content... * * ``` */ import type { Snippet } from 'svelte'; type Props = { /** Header text (ignored when a `header` snippet is given). */ title?: string; /** Open state (bindable). */ open?: boolean; onOpenChange?: (open: boolean) => void; disabled?: boolean; /** Custom header content (replaces `title`). */ header?: Snippet; children?: Snippet; }; declare const SvCollapsible: import("svelte").Component; type SvCollapsible = ReturnType; export default SvCollapsible;