/**
 * Schemas Module
 * Centralized export of all Zod schema definitions
 */

export * from "./responses";

// AWS Polly schemas (selective export to avoid conflicts with models/speechMarks)
export {
  awsPollyVoiceSchema,
  awsPollyEngineSchema,
  awsPollyOutputFormatSchema,
  awsPollyRequestSchema,
  awsPollySynthesisInputSchema,
  awsPollyMetadataSchema,
  speechSynthesisResponseSchema,
  awsPollyConfigSchema
} from "./awsPolly"; 