import * as React from 'react';
import type { CommandPaletteCmdGroup, CommandPaletteCmdRef } from '../types';
export interface CommandPaletteListProps {
    list: CommandPaletteCmdGroup[];
    selected?: null | CommandPaletteCmdRef;
    highlight?: string[];
    disabled?: boolean;
    onSelect?: (item: CommandPaletteCmdRef) => void;
    onRun?: (cmd: CommandPaletteCmdRef) => void;
}
export declare const CommandPaletteList: React.FC<CommandPaletteListProps>;
