import React from 'react'; import type { ViewStyle } from 'react-native'; interface GridProps { columns?: number; gap?: number; style?: ViewStyle; children?: React.ReactNode; testID?: string; } export declare function Grid({ columns, gap, style, children, testID }: GridProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=grid.d.ts.map