import { FC, Ref } from '@dineug/r-html'; import { ValuesType } from '../../../internal-types'; export declare const ErdContextMenuType: { readonly ERD: "ERD"; readonly table: "table"; readonly relationship: "relationship"; }; export type ErdContextMenuType = ValuesType; export type ErdContextMenuProps = { type: ErdContextMenuType; canvas: Ref; relationshipId?: string; tableId?: string; onClose: () => void; }; declare const ErdContextMenu: FC; export default ErdContextMenu;