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