import type { NostrEvent, NotSignedNostrEvent } from "../nostr"; import type { EventSigner } from "../signer"; export declare class Nip55Signer implements EventSigner { #private; init(): Promise; getPubKey(): Promise; nip4Encrypt(content: string, key: string): Promise; nip4Decrypt(content: string, otherKey: string): Promise; nip44Encrypt(content: string, key: string): Promise; nip44Decrypt(content: string, otherKey: string): Promise; sign(ev: NostrEvent | NotSignedNostrEvent): Promise; get supports(): string[]; } //# sourceMappingURL=nip55.d.ts.map