/// export declare const ThemeColor: string[]; export declare const ExampleColors: string[]; export declare const NatureColors: string[]; export declare const GrayscaleColors: string[]; export declare const StatusColors: string[]; export declare const ColorGroup: string[]; declare type ForEachColorParams = (color: string, idx: number) => JSX.Element | JSX.Element[]; /** * 遍历颜色系统选项 * @param Colors */ export declare const ForEachColor: (Colors?: string[]) => (getComponent: ForEachColorParams) => (JSX.Element | JSX.Element[])[] | null; export {};