import { z } from 'zod/v4'; export declare const oAuthAuthorizationServerMetadataSchema: z.ZodObject<{ authorization_endpoint: z.ZodURL; token_endpoint: z.ZodURL; registration_endpoint: z.ZodURL; grant_types_supported: z.ZodOptional>; token_endpoint_auth_methods_supported: z.ZodOptional>; code_challenge_methods_supported: z.ZodOptional>; scopes_supported: z.ZodOptional>; }, z.core.$strip>; export declare const dynamicClientRegistrationResponseSchema: z.ZodObject<{ client_id: z.ZodString; client_secret: z.ZodOptional; }, z.core.$strip>;