/** * @file Select * @description */ import React, { CSSProperties } from 'react'; import { ControllerStateAndHelpers } from 'downshift'; import { OptionType, OptionProps } from './types'; export declare type SizeType = 'xs' | 'sm' | 'md' | 'xl' | 'lg' | 'full' | 'base'; export declare type Option = OptionType; export interface Options extends Array