import { Supported_Framework } from '../../shared'; export declare const applyTemplateDir: ({ sourceDir, targetDir, files, context, }: { sourceDir: string; targetDir: string; files: string[]; context: T; }) => Promise; export declare const collectAllFilesInPackageDir: ({ dir, frameworks, prefix, files, }: { dir: string; frameworks: Supported_Framework[]; prefix?: string | undefined; files?: string[] | undefined; }) => Promise; export declare const collectAllFilesInComponentDir: ({ dir, prefix, files, }: { dir: string; prefix?: string | undefined; files?: string[] | undefined; }) => Promise;