import * as React from \"react\"; import \"./App.css\"; import PageTwo from \"./components/PageTwo\"; export interface IPropsk { data?: Array&l
You can just set type this way and you will get no errors
export interface IPropsk { data?: Array; fetchData?(): (value: string) => void; }