import type React from 'react';
import type { Message } from '@langchain/langgraph-sdk';
interface FleekAgentsChatImageMessageProps {
    sender?: string;
    avatar?: string;
    message: Message;
    AvatarComp: React.ElementType;
}
export declare const FleekAgentsChatImageMessage: React.FC<FleekAgentsChatImageMessageProps>;
export {};
