import type { StateVariant } from "../types/variants"; /** @alpha */ export interface SelectProps extends React.SelectHTMLAttributes { /** The initial state of the select (if you want to force a specific state) */ state?: StateVariant; } /** * A select component. * * @example Basic select * * ```tsx * ; * ``` * * @alpha */ export declare const Select: React.FC; //# sourceMappingURL=Select.d.ts.map