import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import { ChatServerActionLink } from "../../xapp/ChatServerMessage";
import "./ChatChips.scss";
export interface Props {
    readonly options: readonly (string | ChatServerActionLink)[];
    onOptionClick?: (option: string | ChatServerActionLink) => void;
}
/**
 * Render option list. We just follow the order.
 */
declare const ChatChips: FC<Props>;
export default ChatChips;
