import type { ApiPromise } from "@polkadot/api/promise/Api"; import type { KeyringPair, KeyringPair$Json } from "@polkadot/keyring/types"; import type { AccountId } from "@polkadot/types/interfaces"; import type { KeypairType } from "@polkadot/util-crypto/types"; import { type PolkadotSecretJSON } from "@prosopo/types"; export declare function getPairAsync(secret?: string | KeyringPair$Json | PolkadotSecretJSON, account?: string | Uint8Array, pairType?: KeypairType, ss58Format?: number): Promise; export declare function getPair(secret?: string | KeyringPair$Json | PolkadotSecretJSON, account?: string | Uint8Array, pairType?: KeypairType, ss58Format?: number): KeyringPair; export declare function getReadOnlyPair(api: ApiPromise, userAccount?: string): KeyringPair; export declare function getZeroAddress(api: ApiPromise): AccountId; //# sourceMappingURL=getPair.d.ts.map