import { r as KlawConfig } from "./types.klaw-xKUw_Rz7.js"; //#region src/channels/sender-label.d.ts type SenderLabelParams = { name?: string; username?: string; tag?: string; e164?: string; id?: string; }; //#endregion //#region src/auto-reply/envelope.d.ts type AgentEnvelopeParams = { channel: string; from?: string; timestamp?: number | Date; host?: string; ip?: string; body: string; previousTimestamp?: number | Date; envelope?: EnvelopeFormatOptions; }; type EnvelopeFormatOptions = { /** * "local" (default), "utc", "user", or an explicit IANA timezone string. */ timezone?: string; /** * Include absolute timestamps in the envelope (default: true). */ includeTimestamp?: boolean; /** * Include elapsed time suffix when previousTimestamp is provided (default: true). */ includeElapsed?: boolean; /** * Optional user timezone used when timezone="user". */ userTimezone?: string; }; declare function resolveEnvelopeFormatOptions(cfg?: KlawConfig): EnvelopeFormatOptions; declare function formatAgentEnvelope(params: AgentEnvelopeParams): string; declare function formatInboundEnvelope(params: { channel: string; from: string; body: string; timestamp?: number | Date; chatType?: string; senderLabel?: string; sender?: SenderLabelParams; previousTimestamp?: number | Date; envelope?: EnvelopeFormatOptions; fromMe?: boolean; }): string; declare function formatInboundFromLabel(params: { isGroup: boolean; groupLabel?: string; groupId?: string; directLabel: string; directId?: string; groupFallback?: string; }): string; //#endregion export { resolveEnvelopeFormatOptions as a, formatInboundFromLabel as i, formatAgentEnvelope as n, formatInboundEnvelope as r, EnvelopeFormatOptions as t };