import * as React from 'react'; import {PropsWithChildren} from "react"; export interface FeatureListProps { dataHook?: string; className?: string; cols?: number; features?: FeatureType[]; } export default class FeatureList extends React.Component> {} export type FeatureType = { image: React.ReactNode; title: string; text: string; };