import type { Channel } from 'open-chat-js'; import type { DefaultStreamChatGenerics } from '../../../types/types'; import type { StreamMessage } from '../../../context'; export declare enum MessageDeliveryStatus { DELIVERED = "delivered", READ = "read" } type UseMessageStatusParamsChannelPreviewProps = { channel: Channel; /** The last message received in a channel */ lastMessage?: StreamMessage; }; export declare const useMessageDeliveryStatus: ({ channel, lastMessage, }: UseMessageStatusParamsChannelPreviewProps) => { messageDeliveryStatus: MessageDeliveryStatus | undefined; }; export {}; //# sourceMappingURL=useMessageDeliveryStatus.d.ts.map