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