/** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */exportdeclareconstprintReceivedStringContainExpectedSubstring:(received:string,start:number,length:number)=>string;exportdeclareconstprintReceivedStringContainExpectedResult:(received:string,result:RegExpExecArray|null)=>string;exportdeclareconstprintReceivedArrayContainExpectedItem:(received:unknown[],index:number)=>string;exportdeclareconstprintCloseTo:(receivedDiff:number,expectedDiff:number,precision:number,isNot:boolean)=>string;exportdeclareconstprintExpectedConstructorName:(label:string,expected:Function)=>string;exportdeclareconstprintExpectedConstructorNameNot:(label:string,expected:Function)=>string;exportdeclareconstprintReceivedConstructorName:(label:string,received:Function)=>string;exportdeclareconstprintReceivedConstructorNameNot:(label:string,received:Function,expected:Function)=>string;