import { NativeElement } from '@nonoun/native-core'; import { DataListController } from '@nonoun/native-core'; import type { DataItem } from '@nonoun/native-core'; /** * Command palette with filterable item list and keyboard navigation. * @attr {boolean} disabled - Disables interaction * @fires native:change - Fired when an item is selected with `{ value, label }` detail * @fires native:dismiss - Fired on Escape key press */ export declare class NCommand extends NativeElement { #private; static observedAttributes: string[]; constructor(); get store(): DataListController; get disabled(): boolean; set disabled(val: boolean); attributeChangedCallback(name: string, old: string | null, val: string | null): void; setup(): void; teardown(): void; } //# sourceMappingURL=command-element.d.ts.map