import { CSSProperties } from "react"; import { ForeignKeyOptions } from "@easyv/dtable-types/output/Column"; import { ForeignRowItem } from "@easyv/dtable-types/output/Cell"; interface Props { value: ForeignRowItem[]; onSelectDelete?: (v: ForeignRowItem) => void; onChange?: (v: ForeignRowItem[]) => void; style?: CSSProperties; className?: string; disabled?: boolean; defaultOpen?: boolean; placeholder?: string; typeOptions: ForeignKeyOptions; } /** * @description: ForeignKey编辑组件 * @param {*} * @return {*} */ declare function ForeignKey({ onChange, onSelectDelete, defaultOpen, typeOptions, disabled, placeholder, value: _value, style, className, }: Props): JSX.Element; export default ForeignKey;