import { z } from 'zod'; import { type ConfigOf, type RedactedConfig } from '../../resource/secrets.ts'; export declare const SlackConfigSchema: z.ZodObject<{ token: z.ZodString; searchToken: z.ZodOptional; baseUrl: z.ZodOptional; }, z.core.$strip>; export type SlackConfig = ConfigOf; export type SlackConfigRedacted = RedactedConfig; export declare function redactSlackConfig(config: SlackConfig): SlackConfigRedacted; export declare function normalizeSlackConfig(input: Record): SlackConfig; //# sourceMappingURL=config.d.ts.map