import { Device } from "./device";
import { Link } from "./link";
export declare class SearchRegisteredDevicesResponse {
    /**
    * Contains a list of registered SCA devices and their corresponding details.
    */
    "data"?: Array<Device>;
    /**
    * The total amount of registered SCA devices that match the query parameters.
    */
    "itemsTotal"?: number;
    "link"?: Link | null;
    /**
    * The total amount of list pages.
    */
    "pagesTotal"?: number;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
