/**
 * @fileoverview WSF Schedule API Input Schemas for Active Seasons
 *
 * This module provides Zod schemas for validating input parameters for the WSF
 * Schedule API endpoints related to active seasons operations.
 */
import { z } from "../../../../shared/zod";
/**
 * Schema for ActiveScheduledSeasons input parameters
 *
 * This operation retrieves a summary of active seasons. */
export declare const activeSeasonsInputSchema: z.ZodObject<{}, z.core.$strip>;
export type ActiveSeasonsInput = z.infer<typeof activeSeasonsInputSchema>;
//# sourceMappingURL=activeSeasons.input.d.ts.map