import type { ActivitySinkV1 } from "#channel/types.js";
import type { ActivityEventV1 } from "#protocol/activity.js";
/** Submits activity to its sink without affecting the observed session. */
export declare function submitActivity(input: {
    readonly sink: ActivitySinkV1 | undefined;
    readonly events: readonly ActivityEventV1[];
}): Promise<void>;
