import { ITypography } from "./Typography"; import { IShape } from "./Shape"; import { IColors } from "./Colors"; export interface IMedia { onlyMobile: string; mobileSmall: string; onlyMobileSmall: string; mobileBig: string; onlyMobileBig: string; tablet: string; onlyTablet: string; desktopAndTablet: string; onlyDesktopAndTablet: string; desktop: string; IE11Detecting: string; iPhoneXPortrait: string; iPhoneXLandscape: string; iPhoneXRPortrait: string; iPhoneXRLandscape: string; iPhoneXSPortrait: string; iPhoneXSLandscape: string; iPhoneXSMaxPortrait: string; iPhoneXSMaxLandscape: string; } interface IShadows { shadowLarge?: string; shadowSmallLight?: string; shadowSmallDeep?: string; } interface IInnerShadows { shadowLarge: string; shadowSmall: string; } export interface IDimensions { maxWidth: string; cardWidth: string; borderRadius: string; } export interface ITheme { shape: IShape; borderWidth: string; typography: ITypography; shadows: IShadows; colors: IColors; } export declare const MEDIA: IMedia; export declare const SHADOWS: IShadows; export declare const INNERSHADOWS: IInnerShadows; export declare const DIMENSIONS: IDimensions; export declare const DefaultTheme: ITheme; export {};