import { SteamAppPlaytime } from './types/playtime';
import { Player } from './types/player';
import { SteamFamilyLibForStats } from './index';
import { StoreItem } from 'node-steam-family-group-api';
export declare const useComputedData: (libs: SteamFamilyLibForStats[], recentLibDetails: StoreItem[], filteredPlayer: any[], players: Player[], libsPlaytime: SteamAppPlaytime[]) => {
    cntData: {
        gamer: any;
        cnt: any;
        name: string;
    }[];
    dicts: {
        value: any;
        text: string;
    }[];
    playtimeData: any;
    appsForUse: {
        ownerSteamids: string[];
        mappedTags: string[];
        rtTimeAcquired: number;
        familyId: string;
        name?: string;
        appId: number;
        steamIds: string;
        type: "lib" | "wish";
        lastModifiedAt: number;
        playtime: any;
    }[];
    mappedRecentLibs: {
        owners: Player[];
        detail: any;
        ownerSteamids: string[];
        mappedTags: string[];
        rtTimeAcquired: number;
        familyId: string;
        name?: string;
        appId: number;
        steamIds: string;
        type: "lib" | "wish";
        lastModifiedAt: number;
        playtime: any;
    }[];
};
