import { GridKeys } from "./keys"; import { CSSValue, ResponsiveStyle } from "./types"; declare const unitKeys: readonly ["gridGap", "gridColumnGap", "gridRowGap"]; type UnitKeys = (typeof unitKeys)[number]; export type GridProps = Partial, CSSValue>> & Partial>>; export declare const grid: (props: GridProps) => ResponsiveStyle; export {};