export default function searchWholeObjByName(what: any, where: any): Match[]; export function searchWholeObjByNameSimple(what: any, where: any): any; export function searchWholeObjByNameSimpleArray(what: any, where: any): any; declare class Match { constructor(props: any); value: any; toString(): string; logValue(): any; log(): void; } export {};