import { z } from 'zod'; declare const commonGitlabConfig: z.ZodObject<{ repoUrl: z.ZodString; token: z.ZodOptional; }, "strip", z.ZodTypeAny, { repoUrl: string; token?: string | undefined; }, { repoUrl: string; token?: string | undefined; }>; export default commonGitlabConfig; export declare const commonGitlabConfigExample: { repoUrl: string; token: string; }; /** * Gitlab issue types as specified by gitlab api * * @public */ export declare enum IssueType { ISSUE = "issue", INCIDENT = "incident", TEST = "test_case", TASK = "task" } /** * Gitlab issue state events for modifications * * @public */ export declare enum IssueStateEvent { CLOSE = "close", REOPEN = "reopen" }