import { DecryptAndUnTarOptions, DecryptAndUnTarResult, DecryptAndUnTarStatus } from "./vita-options-results";
export interface VitaDecryptUnTar {
    process(options: DecryptAndUnTarOptions, cbStatus: (err: Error, decryptAndUnTarResults: DecryptAndUnTarStatus) => void, cbFinal: (err: Error, decryptAndUnTarResults: DecryptAndUnTarResult[]) => void): any;
}
