import { type ComponentPropsWithoutRef, type ReactNode, type Ref } from 'react'; type NativeSelectProps = Omit, 'children' | 'defaultValue' | 'multiple' | 'value'>; type InTextSelectProps = NativeSelectProps & { children: ReactNode; defaultValue?: string | number; value?: string | number; ref?: Ref; }; declare const InTextSelect: ({ children, className, defaultValue, onChange, onClick, onFocus, onInput, onKeyDown, onPointerDown, ref, style, value, ...props }: InTextSelectProps) => import("react/jsx-runtime").JSX.Element; export { InTextSelect }; export type { InTextSelectProps };