import React, { PureComponent } from "react"; import ISelect from "../../interfaces/select"; import { colorTypes } from "../../types/color"; import { variantTypes } from "../../types/select"; export default class Select extends PureComponent { render(): React.JSX.Element; } interface IProps extends ISelect { variant?: variantTypes; items: any[]; fluid?: boolean; value?: string; valueKey?: string; name?: string; error?: boolean; rightIcon?: string; leftIcon?: string; className?: string; selected?: string; rightIconColor?: colorTypes; leftIconColor?: colorTypes; } export {};