import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import { Display } from "stentor-models";
import "./ChatScheduleWidget.scss";
export interface Props {
    readonly display: Display;
    minimizeOnClick?(): void;
}
declare const ChatScheduleWidget: FC<Props>;
export default ChatScheduleWidget;
