/// import './style/MatterId.less'; export declare enum MenuTypes { REQUIREMENT = 2, TASK = 3, DEFECT = 4, RISK = 5 } export declare const MenuTypeMap: { 2: string; 3: string; 4: string; 5: string; }; interface Props { recordType: 2 | 3 | 4 | 5; recordId: number; recordTitle: string; copyTooltips: string; } export default function CopyId(props: Props): JSX.Element; export {};