import { Url } from "./url"; export declare class EventUrl { /** * One or more local URLs to send event notifications to when using Terminal API. */ "eventLocalUrls"?: Array; /** * One or more public URLs to send event notifications to when using Terminal API. */ "eventPublicUrls"?: Array; 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(); }