import * as React from "react";

export interface SelectOption { value: string; label: string; }

/** Native select with the house chevron and gold focus ring. */
export interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
  /** @default "light" */
  tone?: "light" | "dark";
  /** Options as data; alternatively pass <option> children. */
  options?: SelectOption[];
}
export function Select(props: SelectProps): JSX.Element;
