/** * Copyright 2023 Kapeta Inc. * SPDX-License-Identifier: MIT */ import { CodeGenerator } from './types'; export declare function walkDirectory(dir: string): string[]; export declare function testCodeGenFor(target: any, generator: CodeGenerator, basedir: string, allFilesFilter?: (path: string) => boolean): Promise;