import { NativeElement } from '@nonoun/native-core'; /** * Selectable item within a command palette. * @attr {string} value - Item value emitted on selection * @attr {boolean} disabled - Disables this item * @attr {string} keywords - Additional search terms for filtering * @fires native:select - Fired on click with `{ value, label }` detail */ export declare class NCommandItem extends NativeElement { #private; static observedAttributes: string[]; constructor(); get value(): string; set value(val: string); get disabled(): boolean; set disabled(val: boolean); get keywords(): string; set keywords(val: string); get label(): string; get searchText(): string; attributeChangedCallback(name: string, old: string | null, val: string | null): void; setup(): void; teardown(): void; } //# sourceMappingURL=command-item-element.d.ts.map