import type { Channel, LocalMessage, UserResponse } from 'stream-chat';
type UseLastDeliveredDataParams = {
    channel: Channel;
    messages: LocalMessage[];
    returnAllReadData: boolean;
    lastOwnMessage?: LocalMessage;
};
export declare const useLastDeliveredData: (props: UseLastDeliveredDataParams) => Record<string, UserResponse[]>;
export {};
