export interface DummyValue { value: string; } export interface Breakpoints { small: string; medium: string; large: string; } export interface Theme { dummy: DummyValue; breakpoints: Breakpoints; } export interface ThemeWithoutBreakpoints { dummy: DummyValue; } export declare const themeWithoutBreakpoints: ThemeWithoutBreakpoints; export declare const theme: Theme;