• Returns {
        appName: string | undefined;
        isLoading: boolean;
        isAuthenticated: boolean;
        isReady: boolean;
        user: User | undefined;
        createTransactionData: CreateTransaction | null;
        error: string | null;
        estimateGas: (() => Promise<EstimateTransactionIntentGasResult | null>);
        onAccept: (() => Promise<void>);
        onDeny: (() => void);
    }