import { Value } from "./data-types";
export default interface Output {
    Description?: Value<string>;
    Value: any;
    Export?: {
        Name: Value<string>;
    };
    Condition?: Value<string>;
}
