import type { Theme } from '../types/index.js'; interface Colors { primary: string; success: string; warning: string; error: string; info: string; neutral: string; } export declare function generateAntdColorThemes(inputColors?: Partial): { light: Theme; dark: Theme; }; export {};