import React from 'react';
export declare const MwebChatOption: ({ icon, text, onClick, color, }: {
    icon: React.ReactNode;
    text: string;
    onClick: () => void | Promise<void>;
    color?: string | undefined;
}) => React.JSX.Element;
