import React from "react"; import { Label } from "../Label"; import { Error } from "../Error"; export interface Props { id: string; label: React.ComponentProps; options: { value: string | number; text: string; disabled?: boolean; }[]; name?: string; classes?: string; variants?: "wide" | "inline"; dataTestId: string; error?: React.ComponentProps; onChange?: (selectedValue: string | number) => void; } export declare const Select: (props: Props) => React.JSX.Element;