// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IOptionSelectorProps { label?: string; options: IOptionSelectorItem[]; selected: string; highlightColor: string; className?: string; disabled?: boolean; style?: React.CSSProperties; compact?: boolean; list?: boolean; iconSize?: number; darkMode?: boolean; borderRadius?: number; labelStyle?: React.CSSProperties; onChange: (option: string) => void; } export interface IOptionSelectorState { selected: string; } export class IAOptionSelector extends React.Component { constructor(props: IOptionSelectorProps); componentWillReceiveProps(props: IOptionSelectorProps): void; render(): JSX.Element; } export interface IOptionSelectorItem { image?: string; key: string; text?: string; icon?: string; iconUrl?: string; disabled?: boolean; }