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