import { Predicate } from './types'; export declare const toBe: (predicate: Predicate, errorMessage?: string) => (value: T) => string | null; export declare const notToBe: (predicate: Predicate, errorMessage?: string) => (value: T) => string | null;