import React, { Ref } from 'react'; import { AriaFocusProps } from '../../types/common'; import type { OldDropdownInputProps } from './converter.old'; export type DropdownInputProps = OldDropdownInputProps; export declare const DropdownInput: ((props: Omit, "leftIcon" | "rightIcon"> & { startElement?: React.ReactNode | React.ReactElement>; endElement?: React.ReactNode | React.ReactElement>; } & AriaFocusProps & { ref?: React.Ref | undefined; }) => JSX.Element) & { displayName?: string | undefined; };