import { LexicalCommand } from 'lexical'; interface Payload { busy: boolean; } export declare const UPDATE_BUSY_COMMAND: LexicalCommand; export declare function BusyPlugin({ onChange }: { onChange: (busy: boolean) => void; }): null; export {};