export interface GameData {
    type: string;
    name: string;
    steam_appid: number;
    required_age: string;
    is_free: boolean;
    detailed_description: string;
    about_the_game: string;
    short_description: string;
    supported_languages: string;
    header_image: string;
    capsule_image: string;
    capsule_imagev5: string;
    website: string;
    pc_requirements: {
        minimum: string;
        recommended: string;
    };
    mac_requirements: {
        minimum: string;
        recommended: string;
    };
    linux_requirements: {
        minimum: string;
        recommended: string;
    };
    legal_notice: string;
    ext_user_account_notice: string;
    developers: string[];
    publishers: string[];
    price_overview: {
        currency: string;
        initial: number;
        final: number;
        discount_percent: number;
        initial_formatted: string;
        final_formatted: string;
    };
    packages: number[];
    package_groups: Array<{
        name: string;
        title: string;
        description: string;
        selection_text: string;
        save_text: string;
        display_type: number;
        is_recurring_subscription: string;
        subs: Array<{
            packageid: number;
            percent_savings_text: string;
            percent_savings: number;
            option_text: string;
            option_description: string;
            can_get_free_license: string;
            is_free_license: boolean;
            price_in_cents_with_discount: number;
        }>;
    }>;
    platforms: {
        windows: boolean;
        mac: boolean;
        linux: boolean;
    };
    categories: Array<{
        id: number;
        description: string;
    }>;
    genres: Array<{
        id: string;
        description: string;
    }>;
    screenshots: Array<{
        id: number;
        path_thumbnail: string;
        path_full: string;
    }>;
    movies: Array<{
        id: number;
        name: string;
        thumbnail: string;
        webm: {
            "480": string;
            max: string;
        };
        mp4: {
            "480": string;
            max: string;
        };
        highlight: boolean;
    }>;
    recommendations: {
        total: number;
    };
    achievements: {
        total: number;
        highlighted: Array<{
            name: string;
            path: string;
        }>;
    };
    release_date: {
        coming_soon: boolean;
        date: string;
    };
    support_info: {
        url: string;
        email: string;
    };
    background: string;
    background_raw: string;
    content_descriptors: {
        ids: number[];
        notes: string;
    };
    ratings: {
        esrb: {
            rating: string;
            descriptors: string;
            use_age_gate: string;
            required_age: string;
        };
        pegi: {
            rating: string;
            descriptors: string;
            use_age_gate: string;
            required_age: string;
        };
        usk: {
            rating: string;
            required_age: string;
        };
        dejus: {
            rating_generated: string;
            rating: string;
            required_age: string;
            banned: string;
            use_age_gate: string;
            descriptors: string;
        };
        steam_germany: {
            rating_generated: string;
            rating: string;
            required_age: string;
            banned: string;
            use_age_gate: string;
            descriptors: string;
        };
    };
}
export interface APIResponse {
    success: boolean;
    data: GameData;
}
interface PriceOverview {
    currency: string;
    initial: number;
    final: number;
    discount_percent: number;
    initial_formatted: string;
    final_formatted: string;
}
interface GamePriceData {
    price_overview: PriceOverview;
}
export interface PriceAPIResponse {
    [appId: string]: {
        success: boolean;
        data: GamePriceData;
    };
}
interface App {
    appid: number;
    name: string;
}
interface Apps {
    app: App[];
}
interface AppList {
    apps: Apps;
}
export interface ListAPIResponse {
    applist: AppList;
}
export {};
