/**
 * 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 { GetInsurancePricesLevel } from './GetInsurancePricesLevel';
/**
 * 200 ok object
 * @export
 * @interface GetInsurancePrices200Ok
 */
export interface GetInsurancePrices200Ok {
    /**
     * A list of a available insurance levels for this ship type
     * @type {Array<GetInsurancePricesLevel>}
     * @memberof GetInsurancePrices200Ok
     */
    levels: Array<GetInsurancePricesLevel>;
    /**
     * type_id integer
     * @type {number}
     * @memberof GetInsurancePrices200Ok
     */
    typeId: number;
}
/**
 * Check if a given object implements the GetInsurancePrices200Ok interface.
 */
export declare function instanceOfGetInsurancePrices200Ok(value: object): value is GetInsurancePrices200Ok;
export declare function GetInsurancePrices200OkFromJSON(json: any): GetInsurancePrices200Ok;
export declare function GetInsurancePrices200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetInsurancePrices200Ok;
export declare function GetInsurancePrices200OkToJSON(json: any): GetInsurancePrices200Ok;
export declare function GetInsurancePrices200OkToJSONTyped(value?: GetInsurancePrices200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetInsurancePrices200Ok.d.ts.map