import { type NonSelectorMatchers, type SelectorMatchers } from './utils/expect'; import type { IsEqual, Selector } from './types/internal'; type ExpectFunction = SelectorExpect & NotSelectorExpect; type NotSelectorExpect = (this: void, actual: IsEqual extends true ? 'You should call some property or method on the selector' : Actual | Promise, description: string) => NonSelectorMatchers; type SelectorExpect = (this: void, actual: Selector, description: string) => SelectorMatchers; /** * Wraps a value or promised value to assertion for further checks. */ export declare const expect: ExpectFunction; export {};