export type KeyOfType<T, V> = keyof {
    [P in keyof T as T[P] extends V ? P : never]: unknown;
};
//# sourceMappingURL=typeUtilts.d.ts.map