export interface Props { /** Users who have read the message */ readBy: Array<{ name: string; avatarUrl?: string; }>; /** Total participants in the conversation */ totalParticipants: number; } declare const ReadReceipts: import("svelte").Component; type ReadReceipts = ReturnType; export default ReadReceipts; //# sourceMappingURL=ReadReceipts.svelte.d.ts.map