import { BreakpointsType } from './breakpoints.type';
import { ButtonType } from './button.type';
import { ColorsType } from './color.type';
import { LayersType } from './layers.type';
import { FontType } from './typography.type';
export declare type TagsType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'label';
export interface ITheme {
    breakpoints: BreakpointsType;
    breakpoint: (T: keyof BreakpointsType) => string;
    font: FontType;
    button: ButtonType;
    layers: LayersType;
    colors: ColorsType;
}
