import { default as React } from 'react'; type SelectOption = { value: string; label: string; }; type SelectProps = Omit, 'children'> & { options: readonly SelectOption[]; addBlank?: boolean; placeholder?: string; }; export declare const Select: ({ className, options, addBlank, placeholder, value, ...props }: SelectProps) => import("react/jsx-runtime").JSX.Element; export {};