import type { InjectionKey } from 'vue'; import type { GlobalOptions } from './types'; export declare const GLOBAL_OPTIONS_PROVIDE_KEY: InjectionKey; export declare const setGlobalOptions: (config: GlobalOptions) => void; export declare const getGlobalOptions: () => GlobalOptions; export declare const clearGlobalOptions: () => void;