// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IOptionListSelectorProps { label?: string; options: { key: string; title?: string; icon?: string; description?: string; object?: any; }[]; selected?: string; highlightColor: string; disabled?: boolean; darkMode?: boolean; onChange: (option: { key: string; title?: string; icon?: string; description?: string; object?: any; }) => void; style?: any; } export interface IOptionListSelectorState { selected: string; } export class IAOptionListSelector extends React.Component { constructor(props: IOptionListSelectorProps); componentWillReceiveProps(props: IOptionListSelectorProps): void; render(): JSX.Element; }