import type { ConfigProviderProps } from './props'; export declare const defaultPrefixCls = "ant"; export declare const globalConfigForApi: ConfigProviderProps & { getRootPrefixCls?: (rootPrefixCls?: string, customizePrefixCls?: string) => string; }; export declare function getGlobalIconPrefixCls(): string; export declare function getGlobalPrefixCls(): string; export declare function globalConfig(): { getPrefixCls: (suffixCls?: string, customizePrefixCls?: string) => string; getIconPrefixCls: typeof getGlobalIconPrefixCls; getRootPrefixCls: () => string; };