import * as React from "react"; import { Command as CommandPrimitive } from "cmdk"; import type { InputPrimitiveProps } from "../../Input/index.js"; type InputProps = Omit, "size"> & InputPrimitiveProps & { inputElement?: React.ReactNode; }; declare const Input: ({ inputElement, size, inputRef, ...props }: InputProps) => React.JSX.Element; export { Input, type InputProps };