import { web3 } from '@coral-xyz/anchor'; export interface fromLocalKeypair { localPath: string; } export interface fromGoogleSecret { secretPath: string; } export type KeypairDescriptor = string | fromLocalKeypair | fromGoogleSecret; export interface IKeypairDescriptor { publicKey: web3.PublicKey; localPath?: string; secretPath?: string; } export declare const loadKeypairFs: (keypairPath: string) => web3.Keypair; export declare const loadGoogleSecretKeypair: (secretPath: string) => Promise; export declare const loadKeypair: (keypairPath: KeypairDescriptor) => Promise; /** Loads a keypair with a descriptor to find and retrieve on-command */ export declare const loadKeypairWithDescriptor: (keypairPath: KeypairDescriptor) => Promise<[web3.Keypair, IKeypairDescriptor]>; //# sourceMappingURL=keypair.d.ts.map