import { MatchContext } from '@contract-case/case-plugin-base'; type FieldDescriptor = { field: keyof T; type: string; notNull?: boolean; }; type DataAssertions = { assertFieldPresent: (f: FieldDescriptor) => void; assertIfFieldPresent: (f: FieldDescriptor) => void; }; export declare const makeAssertionsOn: (data: T, name: string, context: MatchContext) => DataAssertions; export {}; //# sourceMappingURL=assert.d.ts.map