export default class VelociousDatabaseMigratorFilesFinder { path: string; /** * Runs constructor. * @param {object} args - Options object. * @param {string} args.path - Path. */ constructor({ path, ...restArgs }: { path: string; }); /** * Runs find files. * @returns {Promise>} - Resolves with the files. */ findFiles(): Promise>; } //# sourceMappingURL=files-finder.d.ts.map