/**
 * 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 ScrapeItem
 */
export interface ScrapeItem {
    /**
     *
     * @type {string}
     * @memberof ScrapeItem
     */
    userAgent: string;
    /**
     *
     * @type {number}
     * @memberof ScrapeItem
     */
    count: number;
}
/**
 * Check if a given object implements the ScrapeItem interface.
 */
export declare function instanceOfScrapeItem(value: object): value is ScrapeItem;
export declare function ScrapeItemFromJSON(json: any): ScrapeItem;
export declare function ScrapeItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScrapeItem;
export declare function ScrapeItemToJSON(json: any): ScrapeItem;
export declare function ScrapeItemToJSONTyped(value?: ScrapeItem | null, ignoreDiscriminator?: boolean): any;
