import IGameGraphChild from "./IGameGraphChild"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export default interface IConnector extends IGameGraphChild { from: Nullable; to: Nullable; fromProp: Nullable; toProp: Nullable; xyz: Nullable<"x" | "y" | "z">; } export declare const connectorSchema: Required>; export declare const connectorDefaults: Partial>;