import type { ComputedRef } from 'vue'; export declare type PluginConfigRef = ComputedRef; export interface PluginConfigConvert { plugins?: { [key: string]: T; }; } export declare const useThemePluginConfig: (key: string) => PluginConfigRef;