import { RegistryAccess } from '@salesforce/source-deploy-retrieve';
import { ChangeResult } from './types';
/**
 * Will build a component set, crawling your local directory, to get paths for remote changes
 *
 * @param elements ChangeResults that may or may not have filepaths in their filenames parameters
 * @param packageDirPaths Array of paths from PackageDirectories
 * @returns
 */
export declare const populateFilePaths: ({ elements, packageDirPaths, registry, }: {
    elements: ChangeResult[];
    packageDirPaths: string[];
    registry: RegistryAccess;
}) => ChangeResult[];
