import React from 'react'; import { MQ } from '../utils/style'; import { GridLayoutRenderProps } from './types'; export declare const GridLayoutItem: import("@emotion/styled").StyledComponent & { theme?: import("@emotion/react").Theme | undefined; } & { area?: string | undefined; order?: MQ | undefined; justifySelf?: MQ | undefined; alignSelf?: MQ | undefined; column?: MQ | undefined; row?: MQ | undefined; } & React.HTMLAttributes, {}, {}>; export declare const GridLayout: React.ForwardRefExoticComponent<{ rowGap?: MQ | undefined; columnGap?: MQ | undefined; rows?: MQ | undefined; columns?: MQ | undefined; justifyContent?: MQ | undefined; alignContent?: MQ | undefined; justifyItems?: MQ | undefined; alignItems?: MQ | undefined; areas?: MQ | undefined; inline?: MQ | undefined; autoColumns?: MQ | undefined; autoRows?: MQ | undefined; autoFlow?: MQ | undefined; children?: React.ReactNode | GridLayoutRenderProps; as?: React.ElementType | undefined; overrides?: ({ width?: MQ | undefined; minWidth?: MQ | undefined; maxWidth?: MQ | undefined; height?: MQ | undefined; minHeight?: MQ | undefined; maxHeight?: MQ | undefined; } & import("../utils/logical-properties").LogicalProps) | undefined; } & Omit, "children"> & React.RefAttributes>; //# sourceMappingURL=grid-layout.d.ts.map