import type { ComponentPropsWithRef, ElementType } from 'react'; export type SelectProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * HTML element that allows users to select one option from a list. * @docs {@link https://design.visa.com/components/select/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Select: { ({ className, tag: Tag, ...remainingProps }: SelectProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Select;