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; };