type Void = void; export type Nullish = null | undefined; export type NullishReturn = Nullish | Void; export type AllowNullish = T | Nullish; export type AllowNullishReturn = T | NullishReturn; export type TypeCheckFunction = (value: unknown) => value is T; export interface WithUnit { readonly unit: U; } export interface WithOptionalFind { readonly find?: F; } export {}; //# sourceMappingURL=private-types.d.ts.map