import { z } from "zod"; export declare const scicmSecretsSchema: z.ZodObject<{ CI_USERNAME: z.ZodString; CI_PASSWORD: z.ZodString; }, "strip", z.ZodTypeAny, { CI_USERNAME: string; CI_PASSWORD: string; }, { CI_USERNAME: string; CI_PASSWORD: string; }>; export declare function getSCICMSecrets(path?: null | string): Promise<{ CI_USERNAME: string; CI_PASSWORD: string; }>; export declare function setSCICMSecrets(secrets: z.infer, path?: null | string): Promise;