import {ReactChild} from "react"; export type NullableString = string | null | undefined export type NullableReactChild = ReactChild | null | undefined; export interface CheckedEvent { checked: boolean } export type CheckedListener = (event: CheckedEvent) => void export type Prediction = (obj?: T) => boolean