import React from 'react'; import { FlintCommand as FlintCommandElement } from '@getufy/flint-ui/command/flint-command'; export interface FlintCommandItemSelectDetail { value: string; } /** * Root command menu component. Manages search filtering and keyboard navigation. * * @slot (default) - Command menu content. */ export interface FlintCommandProps extends React.HTMLAttributes { /** * Bubbles up from activated items. detail: `{ value: string }` * DOM event: `flint-command-item-select` */ onFlintCommandItemSelect?: (event: CustomEvent) => void; } export declare const FlintCommand: React.ForwardRefExoticComponent>;