import { Guard } from "../types";
type PropertyGuards<A extends Record<string, unknown>> = {
    [K in keyof A]: Guard<A[K]>;
};
declare const isObject: <T extends Record<string, unknown>>(propertyGuards: PropertyGuards<T>) => Guard<T>;
export { isObject };
//# sourceMappingURL=isObject.d.ts.map