import type { ApplicationDomain } from '../models/ApplicationDomain'; import type { ApplicationDomainList } from '../models/ApplicationDomainList'; export declare class EventPortal20Service { /** * @returns ApplicationDomainList list of application domains in the associated Event Portal * @throws ApiError */ static listEpApplicationDomains({ organizationName, pageSize, pageNumber, }: { /** the name of the organization (tenant) a resource belongs to **/ organizationName: string; /** The number of items to get per page. Min: 1 Max: 100 **/ pageSize?: number; /** The page number to get. Min: 1 **/ pageNumber?: number; }): Promise; /** * @returns ApplicationDomain an event api products defined in the associated Event Portal * @throws ApiError */ static getEpApplicationDomain({ organizationName, applicationDomainId, }: { /** the name of the organization (tenant) a resource belongs to **/ organizationName: string; /** the id of the appication domain in the Event Portal **/ applicationDomainId: string; }): Promise; }