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'; import type { ISiwsTypedData } from '../../utils/siws/types.js'; export type VerifySiwsDataParameters = { siwsData: ISiwsTypedData; signature: Signature; }; export type VerifySiwsDataReturnType = boolean; export type VerifySiwsDataErrorType = any; export declare function verifySiwsData(client: Client, parameters: VerifySiwsDataParameters): Promise; //# sourceMappingURL=verifySiwsData.d.ts.map