import type { SignpadResponse } from '../models/SignpadResponse'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class WalletService { /** * @returns SignpadResponse OK * @throws ApiError */ static getIdentitySignpad({ address, }: { address: string; }): CancelablePromise; }