import { ColorTheme } from './color/types';
import { FontTheme } from './font/types';
export interface StyleTheme {
    light?: boolean;
    font?: FontTheme;
    color?: ColorTheme;
}
