import type { ViewStyle } from 'react-native'; export declare const GridItemTag: unique symbol; export declare const FullWidth = "fill"; export declare type Width = number | typeof FullWidth; export interface GridItem { [GridItemTag]: typeof GridItemTag; key?: string; value: T; width: Width; } export declare const isGridItem: (item: unknown) => item is GridItem; export declare const makeGridItem: (value: T | GridItem, width?: Width, maxWidth?: number) => GridItem; export declare const getColumnGapStyle: (index: number, totalColumns: number, columnGap: number) => ViewStyle;