/** * Thrown by `createMachine()` for an invalid or unsupported config, and by * `new Statechart()` for names missing from the implementation table. * * `path` is the config path of the object owning the problem * (`"states.foo.on.BAR[0]"`, `"implementations.actions"`); the root is `""`. * The message is `": "`, or just `""` for the root. */ export declare class MachineConfigError extends Error { readonly name = "MachineConfigError"; readonly path: string; readonly detail: string; constructor(path: string, detail: string); } export declare function formatMachineConfigError(path: string, detail: string): string;