export declare const minimumGridColumns = 1; export declare const maximumGridColumns = 12; /** * Numeric screen breakpoint values pulled from the design tokens package. * By default these come in as strings as they have units attached to them * (e.g. '40em'). * * However for comparision calculations we need the true numeric value. * * The Number() method only matches numerical values to begin with. * However for further clarity I'm showing a replace on the * regex /\D/g match, which matches againt any non-numeric characters, * and is replacing it with nothing. */ export declare const ScreenBreakpoints: { Small: number; Medium: number; Large: number; }; export declare const standardFontSizePx = 16;