import type { BrokerMessage, DeliveredInboundMessageResult, InboundMessage } from "@pinet/broker-core/types"; export interface DeliveredInboundPersistenceStore { queueDeliveredMessage(agentId: string, message: InboundMessage): DeliveredInboundMessageResult; } export interface PersistedInboundNotification { result: DeliveredInboundMessageResult; notificationText: string; } export declare function buildPinetReadPointer(threadId: string): string; export declare function buildPersistedInboundNotificationText(message: BrokerMessage): string; export declare function persistDeliveredInboundMessage(store: DeliveredInboundPersistenceStore, agentId: string, message: InboundMessage): PersistedInboundNotification;