import { type AnyObjectSchema } from 'yup'; type TRouteName = 'CLUB_SEARCH' | 'OVERALL_STATS' | 'MEMBER_CAREER_STATS' | 'MEMBER_STATS' | 'MATCHES_STATS' | 'CLUB_INFO'; interface ROUTE { url: string; schema: AnyObjectSchema; } declare const ROUTES: Record; export type { TRouteName }; export { ROUTES };