export declare function validatePathInsideWorkspace(targetPath: string, workspaceRoot: string | undefined): void; export interface LanguageConfig { extensions: string[]; detectImport: (line: string, inBlockComment: boolean) => string | null; cleanLine: (line: string) => string | null; inBlockCommentUpdate: (line: string, inBlockComment: boolean) => boolean; } export declare const bundlerRegistry: Record; export declare function getLanguageConfig(filePath: string): LanguageConfig | undefined; export declare function bundleFiles(inputs: string[], outputPath: string, workspaceRoot?: string, extraArgs?: string[]): void;