import * as React from 'react';
export interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
  label?: string;
  /** Strings or {value,label} pairs */
  options?: (string | { value: string; label: string })[];
}
export declare function Select(props: SelectProps): JSX.Element;
