import { normalizeFilesPath } from './utils'; /** * Perform once. * Search for all files within a given directory. * Normalize paths on Windows. */ declare function getFilesFromDirectory(directory: string, extension: string): string[]; /** * Security measure to restrict access only to files within a previously mapped directory. */ declare function checkAccessPermission(templatePaths: string[], templateFile: string): string[]; export { getFilesFromDirectory, checkAccessPermission, normalizeFilesPath }; //# sourceMappingURL=templates-access.d.ts.map