import type { ConfigSchema, ConfigValues } from '../types'; interface Props { isOpen: boolean; nodeLabel: string; configSchema: ConfigSchema; configValues: ConfigValues; onClose?: () => void; onSave?: (values: ConfigValues) => void; onCancel?: () => void; } declare const ConfigModal: import("svelte").Component; type ConfigModal = ReturnType; export default ConfigModal;