/** * 请在 /packages/pandora-ui/src/index.ts 中导入该组件 */ import React, { CSSProperties } from 'react'; import { type ClassValue } from '../../utils/cx'; import { StylesEnum } from './enum'; interface StyleLibProps { className?: ClassValue; size?: any; style?: CSSProperties; type: string; name?: string; config?: object; value?: any; label?: string; mapping?: object; loading?: boolean; horizontal?: boolean; onChange?: (val: any) => void; } declare const StyleLibP: React.FC; declare type StyleLibType = typeof StyleLibP & { [key in StylesEnum]: any; }; declare const StyleLib: StyleLibType; export default StyleLib;