declare class WebhookListenerEntity {
    /**
    * A unique identifier for the object.
    */
    'id'?: number;
    /**
    * The name used to identify the webhook listener entity.
    */
    'name'?: {
        [key: string]: string;
    };
    /**
    * The name used to programmatically identify the webhook listener entity.
    */
    'technicalName'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { WebhookListenerEntity };
