/// <reference types="react" />
declare type Props = {
    type: "boq" | "shortcut" | "wbs" | "component" | "activity" | "mapping" | "option" | "norm-config" | "norms";
    projectCode?: string;
    onFinish?: () => void;
};
export default function Upload({ type, projectCode, onFinish, }: Props): JSX.Element;
export {};
