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