// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface ISiteListRadioDropDownProps { placeholder?: string; label?: string; styles?: any; themeColor?: string; onSelectOptions(option: any): void; singleOption?: boolean; environment: "Development" | "Test" | "Production"; tenant: string; token: string; selectedValue?: IMultiSelectDropDownOption; } export interface ISiteListRadioDropDownState { checked: IMultiSelectDropDownOption[]; dropDownValue: IMultiSelectDropDownOption[]; take: number; skip: number; searchQuery: string; more: number; totalItems: number; siteWithoutRequiredPermissions: IMultiSelectDropDownOption; } export interface IMultiSelectDropDownOption { key: any; text: string; selected: boolean; item: any; } export class IASiteListRadioDropDown extends React.Component { constructor(props: any); componentDidMount(): void; removeSelectedItem(value: any): void; fetchData(showMore?: boolean): void; checkBox(value: any, condition: any): Promise; search(e: any): void; returnSelectedItems(): JSX.Element[]; returnList(): JSX.Element[]; render(): JSX.Element; }