import { InstructionGuide } from './InstructionGuide';
/** Stack */
export interface Stack {
    /** Stack last commit */
    commit: string;
    /** Stack description */
    description: string;
    /** GIT repository */
    gitRepository: string;
    /** Instructions to start the stack */
    instructions: InstructionGuide[];
    /** Stack name */
    name: string;
    /** Stack release tag */
    release: string;
    /** Stack uuid */
    uuid: string;
}
//# sourceMappingURL=Stack.d.ts.map