import { BreakpointsMap } from '@typographist/core'; import { MediaQueries } from 'styled-breakpoints'; import { CONFIG_SYMBOL } from './constants'; export declare type Styles = Record>; export declare type InitialBreakpoint = Record; export declare type DefaultTheme = { [CONFIG_SYMBOL]: { breakpointsMap: InitialBreakpoint; mediaQueries: Record; }; }; export declare type CustomTheme = { [CONFIG_SYMBOL]: { breakpointsMap: BreakpointsMap; mediaQueries: MediaQueries; }; }; export declare type Theme = DefaultTheme | CustomTheme; export declare type Props = Record;