import * as ts from "typescript";
import { OutputFile } from "./OutputFile";
/**
 * Output of an emit on a single file.
 */
export declare class EmitOutput {
    private readonly filePath;
    /**
     * TypeScript compiler emit result.
     */
    readonly compilerObject: ts.EmitOutput;
    /**
     * Gets if the emit was skipped.
     */
    getEmitSkipped(): boolean;
    /**
     * Gets the output files.
     */
    getOutputFiles(): OutputFile[];
}
