import type { Snippet } from "svelte"; export type PanelSectionProps = { id: string; label: string; children?: Snippet; /** Optional header-trailing controls (buttons, counts…). */ actions?: Snippet; class?: string; }; declare const PanelSection: import("svelte").Component; type PanelSection = ReturnType; export default PanelSection; //# sourceMappingURL=PanelSection.svelte.d.ts.map