import type { CaseConfig } from '../../core/types';
import type { AnyMockDescriptorType } from '../../entities/types';
import type { CaseJestConfig, DefineCaseJestCallback, VerifyCaseJestCallback } from './types';
export declare const defineContract: <T extends AnyMockDescriptorType>({ config, ...contractConfig }: CaseJestConfig<T>, callback: DefineCaseJestCallback) => void;
export declare const verifyContract: (config: CaseConfig, callback: VerifyCaseJestCallback) => void;
