import * as React from 'react'; declare type ForeignTableModalProps = { columnName?: string; defaultValue?: string; onChange: (value: any | null) => void; }; export declare const ForeignTableModal: React.FC; export {};