import { Artifact, Build } from "./types";
declare const findMatchingArtifacts: ({ build, artifacts, }: {
    build: Build;
    artifacts: Artifact[];
}) => void;
export default findMatchingArtifacts;
