import { type ConfigOf, type RedactedConfig, z } from '@struktoai/mirage-core/resource/secrets'; declare const NextcloudConfigSchema: z.ZodObject<{ url: z.ZodString; username: z.ZodOptional; password: z.ZodOptional; verifySsl: z.ZodOptional; timeout: z.ZodOptional; }, z.core.$strip>; export type NextcloudConfig = ConfigOf; export type NextcloudConfigRedacted = RedactedConfig; export declare function normalizeNextcloudConfig(config: Record): NextcloudConfig; export declare function redactNextcloudConfig(config: NextcloudConfig): NextcloudConfigRedacted; export {}; //# sourceMappingURL=config.d.ts.map