import { z } from 'zod'; /** * Zod schema for OAuth2 Client Credentials */ export declare const OAuth2Schema: z.ZodObject<{ oauth_client_id: z.ZodOptional; oauth_client_secret: z.ZodOptional; oauth_token_url: z.ZodOptional; oauth_scopes: z.ZodOptional; oauth_audience: z.ZodOptional; oauth_auth_method: z.ZodOptional>; }, "strip", z.ZodTypeAny, { oauth_client_id?: string | undefined; oauth_client_secret?: string | undefined; oauth_token_url?: string | undefined; oauth_scopes?: string | undefined; oauth_audience?: string | undefined; oauth_auth_method?: "client_secret_basic" | "client_secret_post" | undefined; }, { oauth_client_id?: string | undefined; oauth_client_secret?: string | undefined; oauth_token_url?: string | undefined; oauth_scopes?: string | undefined; oauth_audience?: string | undefined; oauth_auth_method?: "client_secret_basic" | "client_secret_post" | undefined; }>; /** * Zod schema for Kafka Producer SASL Options */ export declare const KafkaProducerSaslOptionsSchema: z.ZodObject<{ mechanism: z.ZodString; username: z.ZodOptional; password: z.ZodOptional; }, "strip", z.ZodTypeAny, { mechanism: string; username?: string | undefined; password?: string | undefined; }, { mechanism: string; username?: string | undefined; password?: string | undefined; }>; //# sourceMappingURL=monitor-auth.d.ts.map