/**
 * Neynar API
 * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 3.175.0
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { WebhookSecret } from './webhook-secret';
import type { WebhookSubscription } from './webhook-subscription';
export interface Webhook {
    'active': boolean;
    'created_at': string;
    'deleted_at': string | null;
    'description': string;
    'developer_uuid': string;
    'http_timeout': string;
    'object': WebhookObjectEnum;
    'rate_limit': number;
    'rate_limit_duration': string;
    'secrets': Array<WebhookSecret>;
    'subscription'?: WebhookSubscription;
    'target_url': string;
    'title': string;
    'updated_at': string;
    'webhook_id': string;
}
export declare const WebhookObjectEnum: {
    readonly Webhook: "webhook";
};
export type WebhookObjectEnum = typeof WebhookObjectEnum[keyof typeof WebhookObjectEnum];
