import type { Client } from "../../Client"; import type { AppendResult, EventData } from "../../types"; import { InternalOptions } from "../../utils"; import type { AppendToStreamOptions } from "."; export declare const append: (this: Client, streamName: string, events: EventData[], { expectedRevision, ...baseOptions }: InternalOptions) => Promise;