import { MessageService } from '../message/message.service';
import { UltramsgChatSendDto } from './dto/ultramsg-chat-send.dto';
export declare class UltramsgSendController {
    private readonly messages;
    private readonly logger;
    constructor(messages: MessageService);
    sendChat(sessionId: string, dto: UltramsgChatSendDto): Promise<{
        id: number;
    }>;
    private sendOnce;
    private isQuoteLookupMiss;
}
export declare function numericUltramsgSendId(messageId: string): number;
