/**
 * 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 { Offset3 } from './Offset3';
import type { SearchResponseDictItem } from './SearchResponseDictItem';
/**
 *
 * @export
 * @interface SearchResponse
 */
export interface SearchResponse {
    /**
     *
     * @type {Array<SearchResponseDictItem>}
     * @memberof SearchResponse
     */
    asDicts?: Array<SearchResponseDictItem>;
    /**
     *
     * @type {string}
     * @memberof SearchResponse
     */
    asString?: string;
    /**
     *
     * @type {Offset3}
     * @memberof SearchResponse
     */
    offset?: Offset3;
}
/**
 * Check if a given object implements the SearchResponse interface.
 */
export declare function instanceOfSearchResponse(value: object): boolean;
export declare function SearchResponseFromJSON(json: any): SearchResponse;
export declare function SearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchResponse;
export declare function SearchResponseToJSON(value?: SearchResponse | null): any;
