declare const colors: Record; declare const shadows: { sm: string; lg: string; }; declare const theme: { layout: { contentMaxWidth: string; contentMaxWidthWithSidebar: string; contentSideMargin: string; mobileActionsDrawerHeight: string; navigationBarHeight: string; breakpoints: { medium: string; large: string; }; }; size: (...args: any[]) => any; fontSize: (...args: any[]) => any; color: (c: keyof typeof colors) => { hex: string | undefined; readonly s: string | undefined; toString: () => string | undefined; css: () => string | undefined; rgba: (v: number) => string | undefined; }; shadow: (s: keyof typeof shadows) => string; defaultFont: string; fonts: { inter: { name: string; metrics: any; }; tiemposHeadline: { name: string; metrics: { familyName: string; capHeight: number; ascent: number; descent: number; lineGap: number; unitsPerEm: number; xHeight: number; }; }; }; timing: { instant: number; immediate: number; rapid: number; fast: number; slow: number; deliberate: number; }; animationEasing: { "ease-in-out": string; "ease-in": string; "ease-out": string; linear: string; "bounce-in": string; "bounce-out": string; "bounce-in-out": string; }; }; export default theme;