/** Invalid adapter configuration. */ export declare const E_INVALID_LOCAL_DIFFUSION_OPTIONS: import("../../../factories").CreatedException<[ string ]>; /** Backend process failure. Optional printf args: `[detail, exitCode?, signal?]`. */ export declare const E_LOCAL_DIFFUSION_BACKEND_ERROR: import("../../../factories").CreatedException<[ string, (number | undefined)?, (string | undefined)? ]>; /** Startup exceeded its deadline. */ export declare const E_LOCAL_DIFFUSION_STARTUP_TIMEOUT: import("../../../factories").CreatedException<[ number ]>; /** Request exceeded its deadline. */ export declare const E_LOCAL_DIFFUSION_REQUEST_TIMEOUT: import("../../../factories").CreatedException<[ number ]>; /** Request was cancelled. */ export declare const E_LOCAL_DIFFUSION_ABORTED: import("../../../factories").CreatedException<[ ]>; /** Backend emitted malformed protocol data. */ export declare const E_LOCAL_DIFFUSION_MALFORMED_FRAME: import("../../../factories").CreatedException<[ string ]>; /** Another request is active. */ export declare const E_LOCAL_DIFFUSION_BUSY: import("../../../factories").CreatedException<[ ]>; /** Adapter has been disposed. */ export declare const E_LOCAL_DIFFUSION_DISPOSED: import("../../../factories").CreatedException<[ ]>;