/// import type { AccessibilityRole, ImageURISource, ViewStyle } from 'react-native'; import { AncillaryDataProps } from '../types'; export interface GridItem { link: string; ratio: string; resizeMode: string; size: any; source: any; text: any; } export interface ImageGridState { tallestTextHeight: number; } export interface ImageGridProps extends AncillaryDataProps { link: string; ratio?: string; resizeMode?: any; source: ImageURISource; size: any; text: any; headerStyle?: any; cardContainerStyle?: ViewStyle; textStyle?: any; eyebrowStyle?: any; items: GridItem[]; options: any; containerStyle?: any; accessibilityLabel?: string; accessibilityRole?: AccessibilityRole; } declare const _default: (props: ImageGridProps) => JSX.Element; export default _default;