import { StyleProp, ViewStyle } from "react-native"; export declare const DataList: ({ data, keyExtractor, renderItem, contentContainerStyle, }: { data: ItemT[]; keyExtractor?: (item: ItemT, index: number) => string; renderItem: (info: { item: ItemT; index: number; }) => React.ReactElement | null; contentContainerStyle?: StyleProp; }) => import("react/jsx-runtime").JSX.Element; export declare const List: ({ children, contentContainerStyle, style, horizontal, }: { children: React.ReactElement[] | React.ReactElement; contentContainerStyle?: StyleProp; style?: StyleProp; horizontal?: boolean; }) => import("react/jsx-runtime").JSX.Element; export declare const Row: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element;