import { type RpcResponse, type RpcResponseError } from '../types/rpc';
import type { Notify } from '../types/signer-handlers';
export declare const notifyError: ({ id, error, origin }: {
    error: RpcResponseError;
} & Notify) => void;
export declare const notify: ({ msg, origin }: {
    msg: RpcResponse;
} & Pick<Notify, "origin">) => void;
