import type { Signer } from '../types/signer.js'; import type { EventsGetMessage } from '../types/event-types.js'; import { AbstractMessage } from '../core/abstract-message.js'; export type EventsGetOptions = { watermark?: string; signer: Signer; messageTimestamp?: string; }; export declare class EventsGet extends AbstractMessage { static parse(message: EventsGetMessage): Promise; static create(options: EventsGetOptions): Promise; } //# sourceMappingURL=events-get.d.ts.map