import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * Parse the stored value into the selected capability-name list. The canonical * storage is a JSON-string array; we also tolerate an already-parsed array (in * case a caller hands us the parsed value) and a bare comma-separated string * (legacy/hand-authored) so no selection is silently dropped. */ export declare function parseCapabilityNames(value: unknown): string[]; export declare function CapabilityMultiSelectField({ value, onChange, readonly, className, ...props }: FieldWidgetComponentProps): React.JSX.Element; export default CapabilityMultiSelectField;