import { AutoExporterOptions } from '../types/module-exporter.types';
export interface BuildExportsFromPathParams {
    fileName: string;
    fileContent: string;
    results: string[];
    usedFunctionTypes: Set<string>;
    withoutExtension: string;
    filepath: string;
    usedFunctionNames: Set<string>;
    defaultExportString: string[];
    config: AutoExporterOptions;
}
export declare const buildExportsFromPaths: (params: BuildExportsFromPathParams) => string[];
