import { type Constructor } from '../typings.js';
import { EntitySchema } from './EntitySchema.js';
export declare function discoverEntities(paths: string | string[], options?: {
    baseDir?: string;
}): Promise<Iterable<EntitySchema | Constructor>>;
