export type Skill = {
    collection: 'skill';
    format: {
        skill_id: string;
        skill_line_id: string;
        skill_line_index: string;
        skill_points: string;
        grant_item_id: string;
        name: {
            de: string;
            en: string;
            es: string;
            fr: string;
            it: string;
            tr: string;
        };
        description: {
            de: string;
            en: string;
            es: string;
            fr: string;
            it: string;
            tr: string;
        };
        image_set_id: string;
        image_id: string;
        image_path: string;
    };
    paths: 'skill_id' | 'skill_line_id' | 'skill_line_index' | 'skill_points' | 'grant_item_id' | 'name.de' | 'name.en' | 'name.es' | 'name.fr' | 'name.it' | 'name.tr' | 'description.de' | 'description.en' | 'description.es' | 'description.fr' | 'description.it' | 'description.tr' | 'image_set_id' | 'image_id' | 'image_path';
    partialPaths: 'skill_id' | 'skill_line_id' | 'skill_line_index' | 'skill_points' | 'grant_item_id' | 'name' | 'name.de' | 'name.en' | 'name.es' | 'name.fr' | 'name.it' | 'name.tr' | 'description' | 'description.de' | 'description.en' | 'description.es' | 'description.fr' | 'description.it' | 'description.tr' | 'image_set_id' | 'image_id' | 'image_path';
    conditions: {
        description?: string;
        'description.de'?: string;
        'description.en'?: string;
        'description.es'?: string;
        'description.fr'?: string;
        'description.it'?: string;
        'description.tr'?: string;
        grant_item_id?: string;
        image_id?: string;
        image_path?: string;
        image_set_id?: string;
        name?: string;
        'name.de'?: string;
        'name.en'?: string;
        'name.es'?: string;
        'name.fr'?: string;
        'name.it'?: string;
        'name.tr'?: string;
        skill_id?: string;
        skill_line_id?: string;
        skill_line_index?: string;
        skill_points?: string;
    };
};
