/// export declare type ChatProductProps = { pictureUrl?: string; title: string; price: string; onClick?: () => void; btnText: string; className?: string; onHide?: () => void; }; export declare function ChatProduct({ pictureUrl, title, price, onClick, btnText, className, onHide, }: ChatProductProps): JSX.Element;