import { InjectionKey } from 'vue';
import { GlobalOptions } from './types';

export declare const GLOBAL_OPTIONS_PROVIDE_KEY: InjectionKey<GlobalOptions>;
export declare const setGlobalOptions: (config: GlobalOptions) => void;
export declare const getGlobalOptions: () => GlobalOptions;
export declare const clearGlobalOptions: () => void;
