import * as React from 'react';
import type { CommandPaletteCmdItem } from '../types';
export interface CommandPaletteCmdProps extends CommandPaletteCmdItem {
    selected?: boolean;
    highlight?: string[];
    disabled?: boolean;
    onSelect?: () => void;
    onClick?: () => void;
}
export declare const CommandPaletteCmd: React.FC<CommandPaletteCmdProps>;
