importReactfrom'react';
exportdeclaretypeChatDownProps = {
/** The type of error */type: string;
/** The image url for this error */image?: string;
/** The error message to show */text?: string;
};
exportdeclareconstChatDown: (props: ChatDownProps) =>React.JSX.Element;