import { IBootstrapTheme, IMUITheme, ITheme } from "./model-interfaces";
export default class Theme {
    type: string;
    sectionLayout?: string | undefined;
    mui?: IMUITheme;
    bootstrap?: IBootstrapTheme;
    constructor(theme: ITheme);
}
