export declare function createEdge<T>(node: T, cursor: string): {
    cursor: string;
    node: T;
};
