import { FontStyle } from "../../data/types"; export interface VibezTheme { fontFamily: { primary: string; }; colors: { primary: string; }; fontStyles: { caption: FontStyle; captionBold: FontStyle; body: FontStyle; label: FontStyle; sectionHeader: FontStyle; header: FontStyle; }; } declare module "styled-components" { interface DefaultTheme extends VibezTheme { } }