import React from "react"; export declare type AddLinkManProps = { linkManNum: number; onChange?: (data: LinkManItem[], pass: boolean) => void; onGetContacts?: (index: number) => void; showImportIcon?: boolean; onBlur?: (type: keyof LinkManItem, index: number) => void; onCheckRelation?: (value: { text: string; value: string; }, index: number) => void; onInputChange?: (type: "linkmanName" | "linkmanPhone", index: number) => void; /** * 可以选择的关系 */ relations?: { text: string; value: string; }[]; needName?: boolean; dataTrackId?: string; }; export declare type LinkManItem = { linkmanName: string; linkmanPhone: string; relationType: string; relationValue: string; }; export declare type LinkManRef = { canSubmit: boolean; setContacts: (item: Partial>, index: number) => void; }; declare const XHAddLinMan: React.ForwardRefExoticComponent>; export default XHAddLinMan;