import { IChart } from './chart'; import { IOnLinkCompleteInput } from './functions'; export interface IConfig { readonly?: boolean; snapToGrid?: boolean; smartRouting?: boolean; gridSize?: number; validateLink?: (props: IOnLinkCompleteInput & { chart: IChart; }) => boolean; nodeProps?: any; [key: string]: any; scale?: number; portsDisabled?: boolean; }