import { type ComponentProps, type ReactNode } from 'react'; import { Input } from '../input'; export interface CommandInputProps extends Omit, 'trailingIcon' | 'chips' | 'maxChipsVisible' | 'variant'> { /** Icon rendered at the start of the input. */ leadingIcon?: ReactNode; } export declare const CommandInput: { ({ ref, leadingIcon, autoFocus, size, placeholder, ...props }: CommandInputProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=command-input.d.ts.map