import ' rollup-plugin-inject-process-env';
import { ChatUserInfo } from "@xapp/stentor-chat-widget";
import { FC } from "react";
export interface ChatRatingContainerProps {
    readonly agent: ChatUserInfo;
    readonly hasRating: boolean;
    readonly shouldDisplay: boolean;
    readonly time?: string;
}
declare const ChatRatingContainer: FC<ChatRatingContainerProps>;
export default ChatRatingContainer;
