import ' rollup-plugin-inject-process-env';
import { ChatUserInfo } from "@xapp/stentor-chat-widget";
import { FC } from "react";
export interface Props {
    readonly agent?: ChatUserInfo;
    readonly hasRating?: boolean;
    readonly shouldDisplay?: boolean;
    onRate?(rating: "bad" | "good" | undefined): void;
}
declare const ChatRating: FC<Props>;
export default ChatRating;
