/**
 * 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.
 */
import type { WebSearchResult } from './WebSearchResult';
/**
 *
 * @export
 * @interface Source
 */
export interface Source {
    /**
     *
     * @type {string}
     * @memberof Source
     */
    kind?: SourceKindEnum;
    /**
     *
     * @type {WebSearchResult}
     * @memberof Source
     */
    data: WebSearchResult;
}
/**
 * @export
 */
export declare const SourceKindEnum: {
    readonly Web: "web";
};
export type SourceKindEnum = typeof SourceKindEnum[keyof typeof SourceKindEnum];
/**
 * Check if a given object implements the Source interface.
 */
export declare function instanceOfSource(value: object): boolean;
export declare function SourceFromJSON(json: any): Source;
export declare function SourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Source;
export declare function SourceToJSON(value?: Source | null): any;
