import React from 'react'; interface DrawPickerProps { value?: string[]; onChange?: (value: string[]) => void; title: string; options: any[]; } declare const DrawPicker: React.FC; export default DrawPicker;