import type { FullToken, GetDefaultToken } from '../../theme/interface';
export interface ComponentToken {
    /**
     * @desc 新会话按钮背景颜色
     * @descEN New conversation button background color
     */
    creationBgColor: string;
    /**
     * @desc 新会话按钮边框颜色
     * @descEN New conversation button border color
     */
    creationBorderColor: string;
    /**
     * @desc 新会话按钮悬浮态背景颜色
     * @descEN Background color of default new conversation button when hover
     */
    creationHoverColor: string;
    /**
     * @desc 快捷键标识字体颜色
     * @descEN Shortcut key identification font color
     */
    shortcutKeyTextColor: string;
}
export interface ConversationsToken extends FullToken<'Conversations'> {
}
export declare const prepareComponentToken: GetDefaultToken<'Conversations'>;
declare const _default: (prefixCls: string, rootCls?: string | undefined) => readonly [string, string];
export default _default;
