/**
 * 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 { GetCharactersCharacterIdSkillsSkill } from './GetCharactersCharacterIdSkillsSkill';
/**
 * 200 ok object
 * @export
 * @interface GetCharactersCharacterIdSkillsOk
 */
export interface GetCharactersCharacterIdSkillsOk {
    /**
     * skills array
     * @type {Array<GetCharactersCharacterIdSkillsSkill>}
     * @memberof GetCharactersCharacterIdSkillsOk
     */
    skills: Array<GetCharactersCharacterIdSkillsSkill>;
    /**
     * total_sp integer
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillsOk
     */
    totalSp: number;
    /**
     * Skill points available to be assigned
     * @type {number}
     * @memberof GetCharactersCharacterIdSkillsOk
     */
    unallocatedSp?: number;
}
/**
 * Check if a given object implements the GetCharactersCharacterIdSkillsOk interface.
 */
export declare function instanceOfGetCharactersCharacterIdSkillsOk(value: object): value is GetCharactersCharacterIdSkillsOk;
export declare function GetCharactersCharacterIdSkillsOkFromJSON(json: any): GetCharactersCharacterIdSkillsOk;
export declare function GetCharactersCharacterIdSkillsOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdSkillsOk;
export declare function GetCharactersCharacterIdSkillsOkToJSON(json: any): GetCharactersCharacterIdSkillsOk;
export declare function GetCharactersCharacterIdSkillsOkToJSONTyped(value?: GetCharactersCharacterIdSkillsOk | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdSkillsOk.d.ts.map