import { PatchDetail } from "../patch/patch-detail";
import { InstallerOptions } from "../options";
interface CheckResult {
    [moduleName: string]: PatchDetail | undefined;
}
/**
 * Check if files can be patched
 */
export declare function check(moduleName?: string | string[], opts?: Partial<InstallerOptions>): CheckResult;
export declare function check(moduleNames?: string[], opts?: Partial<InstallerOptions>): CheckResult;
export {};
