import type { DevtoolsLike, MachineDevtoolsLike } from "../../common/devtools/index.js"; type Update = Partial<{ DEVTOOLS: DevtoolsLike | null; MACHINE_DEVTOOLS: MachineDevtoolsLike | null; onQueryError: (error: unknown) => void; getScopeName: () => string | null; }>; export declare class DefaultOptions { static update(part: Update): void; } export {};