import { ReactiveElement } from "lit"; import { Action, State } from "../types"; export type StateAction = { action: Action; params: Record; resolve: (value: unknown) => void; reject: (reason?: any) => void; }; export declare const dispatch: (host: ReactiveElement, action: Action, params?: Partial) => Promise;