// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IMultiSelectDropDownProps { placeholder?: string; label?: string; options: IMultiSelectDropDownOption[]; styles?: React.CSSProperties; themeColor?: string; onSelectOptions(option: any): void; singleOption?: boolean; } export interface IMultiSelectDropDownState { checked: IMultiSelectDropDownOption[]; dropDownValue: IMultiSelectDropDownOption[]; } export interface IMultiSelectDropDownOption { key: any; text: string; selected: boolean; } export class IAMultiSelectDropDown extends React.Component { constructor(props: any); componentDidMount: () => void; componentDidUpdate: (props: any) => void; removeSelectedItem: (value: any) => void; checkBox: (value: any, condition: any) => void; search: (e: any) => void; returnSelectedItems(): JSX.Element[]; returnList(): JSX.Element[]; render(): JSX.Element; }