import * as React from 'react';
import { HTMLProps } from '../utils/utilityTypes';
import type { WheelItem } from '../wheel/interface';
import type { BaseSelectProps } from './interface';
export interface SelectCssVars {
'--height': React.CSSProperties['height'];
'--disabled-color': React.CSSProperties['color'];
'--placeholder-color': React.CSSProperties['color'];
'--arrow-color': React.CSSProperties['color'];
'--arrow-size': React.CSSProperties['width'];
'--arrow-width': React.CSSProperties['width'];
}
export declare type SelectProps = BaseSelectProps & Omit, 'defaultValue' | 'onChange'> & HTMLProps;
export interface SelectState {
selectValue: Array;
visible: boolean;
}
declare const Select: React.ForwardRefExoticComponent, "onChange" | "defaultValue"> & HTMLProps & React.RefAttributes>;
export default Select;