import { ReactiveController, ReactiveElement } from './types.js'; type CommandBehaviorHost = ReactiveElement & { command?: string; commandForElement: HTMLElement | null; disabled: boolean; readOnly: boolean; }; export declare class TypeCommandController implements ReactiveController { #private; private host; constructor(host: T); hostUpdated(): void; hostDisconnected(): void; get target(): HTMLElement | null; } export {};