///
import PropTypes from 'prop-types';
declare const Types: {
readonly ON: "on";
readonly OFF: "off";
};
export declare const LiveChatIcon: {
({ color, type }: {
color?: string;
type: typeof Types[keyof typeof Types];
}): JSX.Element;
category: string;
propTypes: {
color: PropTypes.Requireable;
type: PropTypes.Requireable;
};
Types: {
readonly ON: "on";
readonly OFF: "off";
};
};
export {};