/// import { ForeignRowItem } from "@easyv/dtable-types/output/Cell"; interface Props { visible: boolean; isMutiple: boolean; foreignTableId: string; value: ForeignRowItem[]; onCancel: () => void; onChange: (v: ForeignRowItem[]) => void; } declare function ForeignRow({ onCancel, onChange, foreignTableId, visible, isMutiple, value, }: Props): JSX.Element; export default ForeignRow;