import { ShapeGuard, GuardType } from'../types/guards';
/**
* Creates a shape guard from an original shape by picking a set of its keys.
*/exportdefaultfunction pick<T extendsShapeGuard, K extends keyof GuardType<T>>(guard: T, keys: K[]): ShapeGuard<Pick<GuardType<T>, K>>;