import type { Notify } from '../types/signer-handlers';
export declare const notifyErrorRequestNotSupported: ({ message, ...notify }: Notify & {
    message?: string;
}) => void;
export declare const notifyErrorActionAborted: (notify: Notify) => void;
export declare const notifyNetworkError: ({ message, ...notify }: Notify & {
    message: string;
}) => void;
export declare const notifyErrorPermissionNotGranted: (notify: Notify) => void;
export declare const notifyErrorMissingPrompt: (notify: Notify) => void;
export declare const notifyErrorSenderNotAllowed: (notify: Notify) => void;
export declare const notifyErrorBusy: (notify: Notify) => void;
export declare const notifyErrorNotInitialized: (notify: Notify) => void;
