import React from 'react'; import { CommonSelectProps } from './BaseSelect'; declare type RefCallback = (node: T | null) => void; export interface NativeSelectProps extends CommonSelectProps, React.HTMLProps { innerRef?: RefCallback | React.RefObject; value?: string; ref?: React.Ref; } export default class NativeSelect extends React.Component { NativeSelect: React.RefObject; static defaultProps: Partial; readonly classes: string; attachRef: (node: HTMLSelectElement | null) => void; render(): JSX.Element; } export {};