import { EntityDict } from './Entity'; import { EntityDict as BaseEntityDict } from '../base-app-domain'; declare type ThemeColor = 'default' | 'success' | 'warning' | 'error'; export declare type ColorDict = { [T in keyof ED]?: { [A in keyof ED[T]['OpSchema']]?: { [E in ED[T]['OpSchema'][A]]?: ThemeColor | `#${string}`; }; }; }; export {};