export interface IThemeMeta { themeColors: { title: string; options: { value: string; color: string; }[]; }; themeRadius: { title: string; options: { value: { pixel: string; rem: string; }; iconUrl: string; size: string; }[]; }; themeSpaces: { title: string; options: { value: { pixel: string; rem: string; size: { sizeUnit: string; sizeStep: string; }; }; iconUrl: string; size: string; }[]; }; } export declare const themeMetaOptions: Omit; export declare const themeTailwindRadius: {}; type ThemeColorTokenMap = { light: Record; dark: Record; }; export declare const themeColorTokenMap: ThemeColorTokenMap; export declare function getKeyByColor(colorValue: string, theme: keyof ThemeColorTokenMap): string; export declare function findValueByPixel(themeSpaces: typeof themeMetaOptions.themeSpaces | typeof themeMetaOptions.themeRadius, pixelValue?: string | number): { pixel: string; rem: string; }; export {};