import type { PresetColors, PresetStatusColorTypes } from '@antdv/ui/es/constants'; export type InputStatus = '' | 'error' | 'warning'; export type ValidateStatus = '' | 'success' | 'warning' | 'error' | 'validating'; export type SelectCommonPlacement = 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'; export type SizeType = 'small' | 'middle' | 'large' | undefined; export type Breakpoint = 'xxxl' | 'xxl' | 'xl' | 'lg' | 'md' | 'sm' | 'xs'; export type BreakpointMap = Record; export type ScreenMap = Partial>; export type ScreenSizeMap = Partial>; export type PresetColorKey = (typeof PresetColors)[number]; export type InverseColor = `${PresetColorKey}-inverse`; export type PresetColorType = PresetColorKey | InverseColor; export type PresetStatusColorType = (typeof PresetStatusColorTypes)[number];