import { FC } from 'react';
import { MessageProps } from './message-interface';
export interface AssistantMessageProps extends MessageProps {
    error?: string | boolean;
    svgIcon?: any;
    assistant?: string;
    onRetry?: () => void;
}
export declare const AssistantMessage: FC<AssistantMessageProps>;
//# sourceMappingURL=assistant-message.d.ts.map