import { z } from 'zod'; export declare const gameMakerFeedChannels: ["lts", "stable", "beta", "unstable"]; export declare const gameMakerFeedDefaultChannels: ["lts", "stable", "beta"]; export interface GameMakerSearch { channel?: GameMakerChannel; version?: string; } export type GameMakerChannel = z.infer; export declare const gameMakerChannelSchema: z.ZodEnum<{ lts: "lts"; stable: "stable"; beta: "beta"; unstable: "unstable"; }>; export type GameMakerFeedOptions = z.input; export declare const gameMakerFeedOptionsSchema: z.ZodObject<{ maxAgeSeconds: z.ZodDefault>; }, z.core.$strip>; //# sourceMappingURL=GameMakerFeeds.types.d.ts.map