import { IColor } from '../../utilities/color/interfaces';
import { Shade } from '../../utilities/color/shades';
export interface IThemeSlotRule {
    name: string;
    color?: IColor;
    value?: string;
    inherits?: IThemeSlotRule;
    asShade?: Shade;
    isBackgroundShade?: boolean;
    isCustomized?: boolean;
    dependentRules: IThemeSlotRule[];
}
