/**
 * 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 WebSearchResult1
 */
export interface WebSearchResult1 {
    /**
     *
     * @type {string}
     * @memberof WebSearchResult1
     */
    title: string;
    /**
     *
     * @type {string}
     * @memberof WebSearchResult1
     */
    url: string;
    /**
     *
     * @type {string}
     * @memberof WebSearchResult1
     */
    source: string;
    /**
     *
     * @type {string}
     * @memberof WebSearchResult1
     */
    published: string;
    /**
     *
     * @type {Array<string>}
     * @memberof WebSearchResult1
     */
    keyPoints: Array<string>;
    /**
     *
     * @type {string}
     * @memberof WebSearchResult1
     */
    rawText?: string;
}
/**
 * Check if a given object implements the WebSearchResult1 interface.
 */
export declare function instanceOfWebSearchResult1(value: object): boolean;
export declare function WebSearchResult1FromJSON(json: any): WebSearchResult1;
export declare function WebSearchResult1FromJSONTyped(json: any, ignoreDiscriminator: boolean): WebSearchResult1;
export declare function WebSearchResult1ToJSON(value?: WebSearchResult1 | null): any;
