export declare type MappingModel = {
    projectCode: string;
    versionCode: string;
    elementCode: string;
    componentCode: string;
    quantity: number;
};
declare function get(projectCode: string, versionCode?: string): Promise<MappingModel[]>;
declare function upload(projectCode: string, files: File[]): Promise<any>;
declare const mappingService: {
    get: typeof get;
    upload: typeof upload;
};
export default mappingService;
