import { PublicKey, Keypair } from '@solana/web3.js'; import type { JsonRecord } from '../../core/parsers/common.js'; export declare function parsePublicKey(value: unknown, fieldName: string): PublicKey; export declare function parseOptionalPublicKey(value: unknown, fieldName: string): PublicKey | undefined; export declare function parseKeypair(value: unknown, fieldName: string): Keypair; export declare function parseWriteOptions(obj: JsonRecord): { skipSend?: boolean; signer?: Keypair; feePayer?: PublicKey; }; //# sourceMappingURL=parsers.d.ts.map