export declare const positions: { football: string[]; 'beach-soccer': string[]; basketball: string[]; volleyball: string[]; }; export declare const positionCategories: { goalkeepers: string[]; defenders: string[]; midfielders: string[]; strikers: string[]; }; export declare const getPlayerPosition: (index: any) => "goalkeeper" | "defender" | "midfielder" | "versatile" | "striker"; export declare const positionOrder: string[];