import { default as React } from 'react'; interface DataRowProps { iconName: string; label: string; onClick?: () => void; showChevron?: boolean; value: string; } declare const DataRow: React.FC; export default DataRow;