/** * Component props */ interface Props { /** Whether the inputs panel is expanded */ isExpanded?: boolean; /** Callback when expansion state changes */ onToggle?: (expanded: boolean) => void; /** Current input values */ values?: Record; /** Callback when values change */ onValuesChange?: (values: Record) => void; } declare const InputCollector: import("svelte").Component; type InputCollector = ReturnType; export default InputCollector;