import { type ComputedRef } from 'vue'; export declare const GLOBAL_CONFIG_TOKEN: unique symbol; export type AiSizeMode = 'normal' | 'small'; export type GlobalConfig = { size?: ComputedRef; supportUpload: ComputedRef; }; export declare const useGlobalConfig: (options: GlobalConfig) => { size: ComputedRef | undefined; supportUpload: ComputedRef; }; export declare const injectGlobalConfig: () => GlobalConfig | undefined;