export declare type GitLabJobObject = {
    [key: string]: {
        image: string;
        stage: string;
        script: string[];
        needs: string[];
        services?: string[];
        before_script?: string[];
    };
};
//# sourceMappingURL=types.d.ts.map