Cómo definir los tipos de componentes funcionales

const Child: FC<ChildProps> = ({/* destructured props */}): ReactElement => { 
  /* function body */ 
};
REX OMIV