/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * 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 AsknewsApiSchemaV1StoriesGraphRelationships
 */
export interface AsknewsApiSchemaV1StoriesGraphRelationships {
    /**
     *
     * @type {Array<{ [key: string]: string; }>}
     * @memberof AsknewsApiSchemaV1StoriesGraphRelationships
     */
    nodes: Array<{
        [key: string]: string;
    }>;
    /**
     *
     * @type {Array<{ [key: string]: string; }>}
     * @memberof AsknewsApiSchemaV1StoriesGraphRelationships
     */
    edges: Array<{
        [key: string]: string;
    }>;
}
/**
 * Check if a given object implements the AsknewsApiSchemaV1StoriesGraphRelationships interface.
 */
export declare function instanceOfAsknewsApiSchemaV1StoriesGraphRelationships(value: object): value is AsknewsApiSchemaV1StoriesGraphRelationships;
export declare function AsknewsApiSchemaV1StoriesGraphRelationshipsFromJSON(json: any): AsknewsApiSchemaV1StoriesGraphRelationships;
export declare function AsknewsApiSchemaV1StoriesGraphRelationshipsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsknewsApiSchemaV1StoriesGraphRelationships;
export declare function AsknewsApiSchemaV1StoriesGraphRelationshipsToJSON(json: any): AsknewsApiSchemaV1StoriesGraphRelationships;
export declare function AsknewsApiSchemaV1StoriesGraphRelationshipsToJSONTyped(value?: AsknewsApiSchemaV1StoriesGraphRelationships | null, ignoreDiscriminator?: boolean): any;
