/// import { ForeignRowItem } from "@easyv/dtable-types/output/Cell"; import { RowData } from "@easyv/dtable-types/output/Record"; interface Props { foreignTableId: string; keyword: string; rows: RowData[]; isMutiple: boolean; onSelectChange: (l: ForeignRowItem[]) => void; selectedRows: ForeignRowItem[]; } declare function ForeignTableRows({ className, style, rows, foreignTableId, keyword, onSelectChange, selectedRows, isMutiple, }: Props & ClassNameAndStyle): JSX.Element; export default ForeignTableRows;