import { MinMax } from '../model/minmax'; import { GameHeroesData, GameWeapon } from '../model/parser/game/game-save'; export declare function splitHeroesData(data: string): [string, string, string]; export declare function mapHeroesArray(data: [T, T, T], map: (value: T) => U): [U, U, U]; export declare function toHeroes(data: [T, T, T]): GameHeroesData; export declare function toWeapon(data: string, id: number): GameWeapon; export declare function strictSplit(data: string, separator?: string, expected?: number | MinMax | null): Array; export declare function toNumberArray(data: string, separator?: string, expected?: number | null): Array; export declare function toFloatArray(data: string, separator?: string, expected?: number | null): Array; export declare function strictParseInt(data: string): number; export declare function parseIntOrdefault(data: string, defaultValue: T): number | T; export declare function strictParseFloat(data: string): number;