import React from 'react'; import './LabelSelectInput.scss'; interface LabelSelectInputProps { label?: string; onChange?: (values: string[]) => void; required?: boolean; defaultValue?: string[]; errorMsg?: string; disabled?: boolean; validationType?: string; enterOnSpace?: boolean; enterOnTab?: boolean; } declare const LabelSelectInput: React.FC; export default LabelSelectInput;