/**
* A performance container type.
* Use this when you want to maintain:
* - type hinting
* - readability of type predicates
* But, need to exclude:
* - Deep type checks
* @paramp
* @returns
*/exportdeclareconst$Perf: <T>(p: (obj: any) => obj is T) =>(obj: any) => obj is T;