/** * Local delivery status on optimistic user messages (not persisted server-side). */ import type { ChatStore } from "../store/chat-store"; export type MessageDeliveryStatus = "pending" | "sending" | "failed"; export declare function setMessageDeliveryStatus(store: ChatStore, messageId: string, status: MessageDeliveryStatus | undefined): void;