// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IDropDownIconProps { icon?: string; iconUrl?: string; iconSize?: number; label?: string; selectedOption: string; options: { "key": string; "value": string; "disabled"?: boolean; }[]; styles?: React.CSSProperties; color?: string; isLoading?: boolean; zIndex?: number; onChange: (option: string) => void; } export interface IDropDownIconState { selectedOption: string; showDropdown: boolean; } export class IADropDownIcon extends React.Component { constructor(props: IDropDownIconProps); componentWillReceiveProps(props: IDropDownIconProps): void; render(): JSX.Element; }