import * as CSS from 'csstype'; import { TypographyProps, SpaceProps, ColorProps, PositionProps, LayoutProps, FlexboxProps, BorderProps, BackgroundProps, ResponsiveValue, ShadowProps } from 'styled-system'; export declare const BREAKPOINTS: { xs: number; sm: string; md: string; lg: string; }; export declare type StyledSystemProps = TypographyProps & SpaceProps & ColorProps & PositionProps & LayoutProps & FlexboxProps & BorderProps & ShadowProps & BackgroundProps; export declare type BoxProps = StyledSystemProps; export declare type GridProps = StyledSystemProps; export declare type CellBaseProps = StyledSystemProps; export declare const Box: import("styled-components").StyledComponent<"div", any, StyledSystemProps, never>; export declare const GridBase: import("styled-components").StyledComponent<"section", any, StyledSystemProps, never>; export declare const CellBase: import("styled-components").StyledComponent<"div", any, StyledSystemProps, never>; declare type StyledGridProps = { gap: ResponsiveValue; rowGap: ResponsiveValue; columnGap: ResponsiveValue; alignItems: ResponsiveValue; alignContent: ResponsiveValue; justifyItems: ResponsiveValue; justifyContent: ResponsiveValue; cols: ResponsiveValue; rows: ResponsiveValue; flow: ResponsiveValue; areas: ResponsiveValue; }; export declare const Grid: import("styled-components").StyledComponent<"section", any, TypographyProps>> & SpaceProps>, string | number | symbol> & ColorProps>, string | number | symbol> & PositionProps>> & LayoutProps>> & FlexboxProps>> & BorderProps>, CSS.Property.Margin> & ShadowProps>> & BackgroundProps>, CSS.Property.Margin> & Partial, never>; declare type CellProps = { area: ResponsiveValue; 'x-offset': ResponsiveValue; 'x-span': ResponsiveValue; 'y-offset': ResponsiveValue; 'y-span': ResponsiveValue; }; export declare const Cell: import("styled-components").StyledComponent<"div", any, TypographyProps>> & SpaceProps>, string | number | symbol> & ColorProps>, string | number | symbol> & PositionProps>> & LayoutProps>> & FlexboxProps>> & BorderProps>, CSS.Property.Margin> & ShadowProps>> & BackgroundProps>, CSS.Property.Margin> & Partial, never>; export {};