import { Field, PrivateKey, Signature } from "o1js"; import { AppChainModule } from "@proto-kit/sequencer"; export interface Signer { sign: (signatureData: Field[]) => Promise; } export interface InMemorySignerConfig { signer: PrivateKey; } export declare class InMemorySigner extends AppChainModule implements Signer { constructor(); sign(signatureData: Field[]): Promise; } //# sourceMappingURL=InMemorySigner.d.ts.map