import * as i0 from '@angular/core'; import { OnInit, OnChanges, EventEmitter, SimpleChanges } from '@angular/core'; import { CommandPaletteItemConfig } from 'mayvio-ui/commandpalette'; declare class CommandPaletteComponent implements OnInit, OnChanges { isOpen: boolean; commands: CommandPaletteItemConfig[]; placeholder: string; emptyText: string; className: string; close: EventEmitter; commandSelect: EventEmitter; search: string; selectedIndex: number; filteredCommands: CommandPaletteItemConfig[]; groupedCommands: Record; groups: string[]; flattenedList: CommandPaletteItemConfig[]; private cdr; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; onGlobalKeyDown(e: KeyboardEvent): void; closePalette(): void; onSearchChange(val: string): void; updateLists(): void; onKeyDown(e: KeyboardEvent): void; onMouseEnter(cmd: CommandPaletteItemConfig): void; isSelected(cmd: CommandPaletteItemConfig): boolean; selectCommand(cmd: CommandPaletteItemConfig): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export { CommandPaletteComponent };