/**
 * EVE Swagger Interface
 * An OpenAPI for EVE Online
 *
 * The version of the OpenAPI document: 1.33
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { GetIndustrySystemsCostIndice } from './GetIndustrySystemsCostIndice';
/**
 * 200 ok object
 * @export
 * @interface GetIndustrySystems200Ok
 */
export interface GetIndustrySystems200Ok {
    /**
     * cost_indices array
     * @type {Array<GetIndustrySystemsCostIndice>}
     * @memberof GetIndustrySystems200Ok
     */
    costIndices: Array<GetIndustrySystemsCostIndice>;
    /**
     * solar_system_id integer
     * @type {number}
     * @memberof GetIndustrySystems200Ok
     */
    solarSystemId: number;
}
/**
 * Check if a given object implements the GetIndustrySystems200Ok interface.
 */
export declare function instanceOfGetIndustrySystems200Ok(value: object): value is GetIndustrySystems200Ok;
export declare function GetIndustrySystems200OkFromJSON(json: any): GetIndustrySystems200Ok;
export declare function GetIndustrySystems200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetIndustrySystems200Ok;
export declare function GetIndustrySystems200OkToJSON(json: any): GetIndustrySystems200Ok;
export declare function GetIndustrySystems200OkToJSONTyped(value?: GetIndustrySystems200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetIndustrySystems200Ok.d.ts.map