import type { WithMediaQueryInnerProps } from '../../../../libs/fsresponsive'; import type { AccessibilityRole } from 'react-native'; import type { FC, ReactNode } from 'react'; import type { StandardizedIterableContainerPropsWithoutFlexWrap, ViewStyleWithoutFlexWrap } from '../../models'; import type { InsertAfterTable, InsertRowTable, WidthTable } from './types'; export interface PreStandardizedSerializableListProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyleWithoutFlexWrap; data: unknown[]; columnWidthTable: WidthTable; insertRows: InsertRowTable; insertAfter: InsertAfterTable; insertEveryFrequency: number; insertEveryValues: unknown[]; nativeID?: string; /** * @TJS-ignore */ children: ReactNode; } export declare type BaseSerializableListProps = WithMediaQueryInnerProps>; export declare const SerializableList: FC;