exporttypeSelect2<T, Q, A, B> = T extends Q ? A : B;
exporttypeSelect3<T, Q1, Q2, A, B, C> = T extendsQ1 ? A : T extendsQ2 ? B : C;
exporttypeSelect4<T, Q1, Q2, Q3, A, B, C, D> = T extendsQ1 ? A : T extendsQ2 ? B : T extendsQ3 ? C : D;
//# sourceMappingURL=select.d.ts.map