import { type ComponentPropsWithoutRef, type Ref } from 'react'; type InlineSelectVariant = 'text' | 'boxed'; type InlineSelectProps = ComponentPropsWithoutRef<'select'> & { variant?: InlineSelectVariant; borderColor?: string; radius?: string; ref?: Ref; }; declare const InlineSelect: ({ borderColor, className, defaultValue, onChange, radius, ref, style, value, variant, ...props }: InlineSelectProps) => import("react/jsx-runtime").JSX.Element; export { InlineSelect }; export type { InlineSelectProps, InlineSelectVariant };