import { StringDict } from "../../../parsing/index.js";
import { ModelWebhook } from "./modelWebhook.js";
/**
 * Models search response.
 */
export declare class SearchModel {
    /**
     * ID of the model.
     */
    id: string;
    /**
     * Name of the model.
     */
    name: string;
    /**
     * Type of the model.
     */
    modelType: string;
    /**
     * Webhooks associated with the model.
     */
    webhooks: ModelWebhook[];
    constructor(serverResponse: StringDict);
    toString(): string;
}
