import { ComputedRef } from 'vue'; /** * 组件属性接口 */ export interface StyleProps { mode?: string; color?: string; link?: boolean; } /** * 设置 class 的通用 hook * @param prefix 组件前缀 * @param props 组件的 props * @returns 计算属性,返回 class 数组 */ export declare function useSetClass(prefix: string, props: StyleProps): ComputedRef; /** * 设置公共样式类的专用 hook * @param props 组件的 props * @returns 计算属性,返回公共样式类数组 */ export declare function useCommonClass(props: StyleProps): ComputedRef;