import { CSSProperties } from 'react'; /** * 统一组件样式前缀 * @param className * @returns */ export declare const getPrefixCls: (className: string) => string; /** * * @param key * @param value * @returns */ export declare function getStyle(key: keyof CSSProperties, value: any): { [x: string]: any; };