/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface GraphRelationships
 */
export interface GraphRelationships {
    /**
     *
     * @type {Array<{ [key: string]: string; }>}
     * @memberof GraphRelationships
     */
    nodes?: Array<{
        [key: string]: string;
    }>;
    /**
     *
     * @type {Array<{ [key: string]: string; }>}
     * @memberof GraphRelationships
     */
    edges?: Array<{
        [key: string]: string;
    }>;
}
/**
 * Check if a given object implements the GraphRelationships interface.
 */
export declare function instanceOfGraphRelationships(value: object): boolean;
export declare function GraphRelationshipsFromJSON(json: any): GraphRelationships;
export declare function GraphRelationshipsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GraphRelationships;
export declare function GraphRelationshipsToJSON(value?: GraphRelationships | null): any;
