import type { Arbitrary } from '../arbitrary/definition/Arbitrary.js'; import type { IProperty, IPropertyWithHooks, PropertyHookFunction } from './Property.generic.js'; /** * Instantiate a new {@link fast-check#IProperty} * @param predicate - Assess the success of the property. Would be considered falsy if it throws or if its output evaluates to false * @remarks Since 0.0.1 * @public */ declare function property(...args: [...arbitraries: { [K in keyof Ts]: Arbitrary; }, predicate: (...args: Ts) => boolean | void]): IPropertyWithHooks; export type { IProperty, IPropertyWithHooks, PropertyHookFunction }; export { property };