import type { LogParams } from '../../types/internal'; type Options = Readonly<{ check: string; payload?: LogParams; skipCheckInRuntime: boolean; }>; /** * Asserts that the value has concrete property (maybe not own). */ export declare function assertValueHasProperty(value: Type, property: Property, options: Options): asserts value is Type & Record; export {};