/// export declare type TargetFunction = () => Return; export declare class FunctionMatchers { private fn; constructor(fn: TargetFunction); private execute; private match; get throws(): jest.JestMatchersShape, jest.Matchers, any>>; get returns(): jest.JestMatchersShape, jest.Matchers, Return>>; } export declare function expectFunction(fn: TargetFunction): FunctionMatchers; export default expectFunction;