import { VisualSearchResource } from "./visual-search-request-resource";
export declare class VisualSearchResponseResource extends VisualSearchResource {
    /**
     * The link to the thumbnail rendition of the asset that was chosen to find similar assets for.
     * Will be used to show in the filters.
     */
    imageLink?: string;
    /**
     * This string is to remove some visual search data from the query.
     */
    removeQuery: string;
    constructor(init?: Partial<VisualSearchResponseResource>);
}
