import { type ComponentPropsWithRef } from "react"; export interface SelectProps { error?: string; classNamePrefix?: string; } declare const Select: { ({ error, children, className, classNamePrefix, ref, ...rest }: SelectProps & ComponentPropsWithRef<"select">): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export default Select;