import { MatchItem } from '../export-related/create-export-matches';
import { AutoExporterOptions } from '../types/module-exporter.types';
interface PartialConfig extends Partial<AutoExporterOptions> {
    primaryExportFile?: string | undefined;
    debug?: boolean;
    rootDir?: string;
}
interface ProcessExportsFromMatchItemParams {
    matchItem: MatchItem;
    withoutExtension: string;
    fileContent: string;
    config: PartialConfig;
}
export declare function processExportsFromMatchItem(params: ProcessExportsFromMatchItemParams): string[];
export {};
