import type { WithMediaQueryInnerProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import type { FC, ReactNode } from 'react'; import type { StandardIterableContainerProps } from '../../models'; import type { InsertAfterTable, InsertRowTable, Width, WidthTable } from './types'; export interface PreStandardizedSerializableGridProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; data: unknown[]; numColumns: number; minColumnWidth: number; columnGap: number | undefined; rowGap: number | undefined; autoFit: boolean; columnWidthTable: WidthTable; insertRows: InsertRowTable; insertAfter: InsertAfterTable; insertEveryFrequency: number; insertEveryValues: unknown[]; featuredItemsKey: string; featureItemsWidth: Width; scrollEnabled?: boolean; windowSize?: number; initialNumToRender?: number; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseSerializableGridProps = WithMediaQueryInnerProps>; export declare const SerializableGrid: FC;