import { type PanelStackShape } from "./PanelStack.svelte"; type Section = { id: string; label: string; content?: string; action?: string; class?: string; }; type $$ComponentProps = { shape?: PanelStackShape; label?: string; expanded?: string | null; defaultExpanded?: string | null; onExpandedChange?: (id: string | null) => void; primary?: string; primaryMinHeight?: number; sections: Section[]; class?: string; }; declare const PanelStackFixture: import("svelte").Component<$$ComponentProps, {}, "">; type PanelStackFixture = ReturnType; export default PanelStackFixture; //# sourceMappingURL=PanelStackFixture.svelte.d.ts.map