export type PadSafeAny = any; export type CompareWith = (o1: PadSafeAny, o2: PadSafeAny) => boolean; export type PadComponentClass = `pad-${string}`; export type OnTouchedType = (value?: T) => PadSafeAny; export type OnChangeType = (value: T) => void;