import { StringDict } from "./stringDict";
/**
 * Representation of an execution's file info.
 * @category Workflow
 */
export declare class ExecutionFile {
    /** File name. */
    name: string | null;
    /** Optional alias for the fil. */
    alias: string | null;
    constructor(jsonResponse: StringDict);
}
