import { FC } from 'react'; import { z } from 'zod'; import { FormProps } from '../node/spec'; import { Diagram } from '../../vis/diagram'; export interface EdgeProps extends Diagram.EdgeProps { onChange: (p: Partial) => void; config: Config; } export type Edge = FC>; export interface Spec { key: Variant; name: string; configZ: z.ZodType

; Form: FC; Edge: Edge

; defaultConfig: () => P; } //# sourceMappingURL=spec.d.ts.map