import type { Snippet } from 'svelte'; interface PropertyGroupProps { title: string; open?: boolean; class?: string; children?: Snippet; ontoggle?: (open: boolean) => void; } declare const PropertyGroup: import("svelte").Component; type PropertyGroup = ReturnType; export default PropertyGroup;