import { OptionHTMLAttributes, ComponentPropsWithRef } from 'react'; import { LabelContainerProps } from '../label-container'; type Props = Omit, 'id' | 'size'> & LabelContainerProps & { options: OptionHTMLAttributes[] | Readonly[]>; }; declare const Select: ({ options, className, label, error, size, block, ...attrs }: Props) => import("react/jsx-runtime").JSX.Element; export { Select }; export type { Props as SelectProps };