1 | import type { KeypairType } from '@polkadot/util-crypto/types';
|
2 | import type { KeyringPair$Json, KeyringPair$Meta } from '../types.js';
|
3 | interface PairStateJson {
|
4 | address: string;
|
5 | meta: KeyringPair$Meta;
|
6 | }
|
7 | export declare function pairToJson(type: KeypairType, { address, meta }: PairStateJson, encoded: Uint8Array, isEncrypted: boolean): KeyringPair$Json;
|
8 | export {};
|