export interface ThemesProps { [key: string]: any; } /** * 取主题配置的mapping值, 返回antd可用的主题配置 * @param themes * @param themeMapping */ export declare const replaceObject: (themes: ThemesProps, themeMapping: ThemesProps) => ThemesProps; /** * 设置主题变量 */ export declare const setThemes: (themes: ThemesProps, themeMapping?: ThemesProps) => boolean; /** JS实现驼峰命名与横线命名的转换 */ export declare const getKebabCase: (str: string) => string; /** JS实现对象驼峰命名与横线命名的转换 */ export declare const getMapKebabCase: (obj: any, prefix?: string) => { [k: string]: unknown; }; /** JS实现对象横线命名与驼峰命名的转换 */ export declare const getMapHumpCase: (obj?: {}) => {}; /** * 设置表格斑马纹 * @param stripe boolean */ export declare const setTableNoStripe: (stripe: boolean, prefixCls?: string) => void; /** * 设置表格边框 * @param border boolean */ export declare const setTableBorder: (border: boolean) => void;