import { CreationEntityState } from "./CreationEntityState";
declare class AbstractWebhookUrlUpdate {
    /**
    * The name used to identify the webhook URL.
    */
    'name'?: string;
    /**
    * The object's current state.
    */
    'state'?: CreationEntityState;
    /**
    * The actual URL where notifications about entity changes are sent to.
    */
    'url'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { AbstractWebhookUrlUpdate };
