import React from 'react'; import { InputVariant } from '../Input'; export interface SelectProps extends React.SelectHTMLAttributes { placeholder?: string; variant?: InputVariant; } export declare const Select: React.ForwardRefExoticComponent>;