import { PropsWithChildren } from 'react';
export interface GridProps {
    columns: 2 | 3 | 4 | 5 | 6;
    customResponsiveColumn?: string;
    customGap?: string;
}
export declare function Grid({ columns, customGap, customResponsiveColumn, children, }: PropsWithChildren<GridProps>): import("react/jsx-runtime").JSX.Element;
