import { InferType } from 'yup'; export type TMatchType = 'leagueMatch' | 'playoffMatch'; declare const SCHEMAS: { readonly CLUB_SEARCH: import("yup").ObjectSchema<{ clubName: string; platform: "common-gen5" | "common-gen4" | "nx"; }, import("yup").AnyObject, { clubName: undefined; platform: undefined; }, "">; readonly OVERALL_STATS: import("yup").ObjectSchema<{ clubIds: string; platform: "common-gen5" | "common-gen4" | "nx"; }, import("yup").AnyObject, { clubIds: undefined; platform: undefined; }, "">; readonly MEMBER_CAREER_STATS: import("yup").ObjectSchema<{ clubId: string; platform: "common-gen5" | "common-gen4" | "nx"; }, import("yup").AnyObject, { clubId: undefined; platform: undefined; }, "">; readonly MEMBER_STATS: import("yup").ObjectSchema<{ clubId: string; platform: "common-gen5" | "common-gen4" | "nx"; }, import("yup").AnyObject, { clubId: undefined; platform: undefined; }, "">; readonly MATCHES_STATS: import("yup").ObjectSchema<{ clubIds: string; platform: "common-gen5" | "common-gen4" | "nx"; matchType: "leagueMatch" | "playoffMatch"; }, import("yup").AnyObject, { clubIds: undefined; platform: undefined; matchType: undefined; }, "">; readonly CLUB_INFO: import("yup").ObjectSchema<{ clubIds: string; platform: "common-gen5" | "common-gen4" | "nx"; }, import("yup").AnyObject, { clubIds: undefined; platform: undefined; }, "">; }; type ClubSearchInput = InferType; type OverallStatsInput = InferType; type MemberCareerStatsInput = InferType; type MemberStatsInput = InferType; type MatchesStatsInput = InferType; type ClubInfoInput = InferType; export { SCHEMAS }; export type { ClubSearchInput, OverallStatsInput, MemberCareerStatsInput, MemberStatsInput, MatchesStatsInput, ClubInfoInput, };