export declare const workExperience: {
    title: string;
    type: string;
    properties: {
        title: {
            type: string;
        };
        entity: {
            type: string;
        };
        city: {
            type: string;
        };
        employmentType: {
            type: string;
        };
        imageUrl: {
            type: string;
        };
        description: {
            type: string;
        };
        startDate: {
            type: string;
        };
        endDate: {
            type: string;
        };
        skills: {
            type: string;
            items: {
                type: string;
                properties: {
                    skillId: {
                        type: string;
                    };
                    score: {
                        type: string;
                    };
                };
                required: string[];
            };
        };
        proofs: {
            type: string;
        };
    };
    required: string[];
    additionalProperties: boolean;
};
//# sourceMappingURL=workExperience.d.ts.map