export declare const WebhookType: {
    readonly Organization: "organization";
    readonly Project: "project";
};
export type WebhookType = typeof WebhookType[keyof typeof WebhookType];
