import { CSSProperties, ReactNode } from 'react'; import { Cell } from './Cell'; export type GridProps = { /** * Content */ children?: ReactNode; /** * Amount of columns */ cols?: number; /** * Number of theme `spacing`-s between cells */ gap?: number; alignItems?: CSSProperties['alignItems']; justifyItems?: CSSProperties['justifyItems']; className?: string; testId?: string; }; declare const GridBase: { ({ gap, cols, className, testId, children, alignItems, justifyItems, }: GridProps): JSX.Element; Cell: import("react").ForwardRefExoticComponent>; }; type GridType = typeof GridBase & { Cell: typeof Cell; }; export declare const Grid: GridType; export {}; //# sourceMappingURL=Grid.d.ts.map