import React from 'react'; import { FlintCommandInput as FlintCommandInputElement } from '@getufy/flint-ui/command/flint-command'; /** * Search input for the command menu. Dispatches `flint-command-filter` events that the parent `flint-command` intercepts to apply filtering. */ export interface FlintCommandInputProps extends React.HTMLAttributes { /** Placeholder text shown when input is empty. */ placeholder?: string; /** Current input value. */ value?: string; } export declare const FlintCommandInput: React.ForwardRefExoticComponent>;