import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import "./ChatMenuItem.scss";
export interface ChatMenuItemProps {
    onClick?: (label: string) => void;
    readonly label: string;
    readonly subtitle?: string;
    readonly tabIndex?: string;
}
declare const ChatMenuItem: FC<ChatMenuItemProps>;
export default ChatMenuItem;
