import React from 'react'; import { View } from 'react-native'; import type { DataListProps, DataListItemProps, DataListItemLabelProps, DataListItemValueProps } from './types'; declare const DataListItemLabel: React.ForwardRefExoticComponent>; declare const DataListItemValue: React.ForwardRefExoticComponent>; declare const DataListItem: React.ForwardRefExoticComponent>; declare const DataList: React.ForwardRefExoticComponent>; declare const DataListWithItems: typeof DataList & { Item: typeof DataListItem; ItemLabel: typeof DataListItemLabel; ItemValue: typeof DataListItemValue; }; export { DataListWithItems as DataList }; export type { DataListProps, DataListItemProps, DataListItemLabelProps, DataListItemValueProps, } from './types';