import XVType from '../XVType.js'; import { Infer } from '../types.js'; type XVObjectShape = Record>; declare class XVObject extends XVType> { readonly objectArg: T; constructor(objectArg: T); protected check(value: unknown): Infer; } export { XVObject as default }; export type { XVObjectShape };