import type { PresetStatusColorType } from '@antdv/ui/es/types'; /** * determine if the color keyword belongs to the `Ant Design` {@link PresetColors}. * @param color color to be judged * @param includeInverse whether to include reversed colors */ export declare function isPresetColor(color?: any, includeInverse?: boolean): boolean; export declare function isPresetStatusColor(color?: any): color is PresetStatusColorType;