import { ThemeType } from "./Enums";
export interface Theming {
    type: ThemeType;
    primary: string;
    secondary: string;
    corporatecolors: Array<string>;
}
