import { CompanyApiCredential } from './companyApiCredential';
import { PaginationLinks } from './paginationLinks';
export declare class ListCompanyApiCredentialsResponse {
    '_links'?: PaginationLinks | null;
    /**
    * The list of API credentials.
    */
    'data'?: Array<CompanyApiCredential>;
    /**
    * Total number of items.
    */
    'itemsTotal': number;
    /**
    * Total number of pages.
    */
    'pagesTotal': number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
