import type { ComponentSize, Locale, AnyObject } from './types';
export interface InstallOptions {
    size?: ComponentSize;
    locale?: Locale;
    i18n?: (...args: any[]) => string;
    zIndex?: number;
    global?: AnyObject<any>;
}
declare const setConfig: (option: InstallOptions) => void;
declare const getConfig: (key: keyof InstallOptions) => string | number | AnyObject<any> | ((...args: any[]) => string) | undefined;
export { getConfig, setConfig };
