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