interface getFilesPathWithInheritanceProps { internalFolder: string; externalFolder: string; logger: (val: string) => void; loggerFileType?: string; filter?: { startWithCapital?: boolean; notTests?: boolean; notHidden?: boolean; }; } declare const getFilesPathWithInheritance: ({ internalFolder, externalFolder, logger, loggerFileType, filter: { startWithCapital, notTests, notHidden }, }: getFilesPathWithInheritanceProps) => Promise<{ path: string; file: string; }[]>; export { getFilesPathWithInheritance };