import type { ClientMeta, CommandEnvelope, CommandEnvelopeWithInstanceId, PublicCommandPayload } from "./sdk-types.js"; export type CreateCommandEnvelopeInput = { command: Command; requestId?: string | undefined; idempotencyKey?: string | undefined; instanceId?: string | undefined; clientMeta?: ClientMeta | undefined; }; export declare const createCommandEnvelope: (input: CreateCommandEnvelopeInput) => Omit & { command: Command; }; export declare const createCommandEnvelopeWithInstanceId: (input: CreateCommandEnvelopeInput & { instanceId: string; }) => Omit & { command: Command; }; export type { CommandEnvelope, CommandEnvelopeWithInstanceId }; //# sourceMappingURL=command-envelope.d.ts.map