import type { Signature } from '@starknet-io/types-js'; import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Chain } from '../../types/chain.js'; export type VerifySiwsMessageParameters = { statement: string; signature: Signature; uri: string; nonce: string; address: string; chainId: string; domain: string; version: string; }; export type VerifySiwsMessageReturnType = boolean; export type VerifySiwsMessageErrorType = any; export declare function verifySiwsMessage(client: Client, parameters: VerifySiwsMessageParameters): Promise; //# sourceMappingURL=verifySiwsMessage.d.ts.map