import { type ListResponseOperationalWebhookEndpointOut } from "../models/listResponseOperationalWebhookEndpointOut"; import { type OperationalWebhookEndpointHeadersIn } from "../models/operationalWebhookEndpointHeadersIn"; import { type OperationalWebhookEndpointHeadersOut } from "../models/operationalWebhookEndpointHeadersOut"; import { type OperationalWebhookEndpointIn } from "../models/operationalWebhookEndpointIn"; import { type OperationalWebhookEndpointOut } from "../models/operationalWebhookEndpointOut"; import { type OperationalWebhookEndpointSecretIn } from "../models/operationalWebhookEndpointSecretIn"; import { type OperationalWebhookEndpointSecretOut } from "../models/operationalWebhookEndpointSecretOut"; import { type OperationalWebhookEndpointUpdate } from "../models/operationalWebhookEndpointUpdate"; import type { Ordering } from "../models/ordering"; import { type SvixRequestContext } from "../request"; export interface OperationalWebhookEndpointListOptions { limit?: number; iterator?: string | null; order?: Ordering; } export interface OperationalWebhookEndpointCreateOptions { idempotencyKey?: string; } export interface OperationalWebhookEndpointRotateSecretOptions { idempotencyKey?: string; } export declare class OperationalWebhookEndpoint { private readonly requestCtx; constructor(requestCtx: SvixRequestContext); list(options?: OperationalWebhookEndpointListOptions): Promise; create(operationalWebhookEndpointIn: OperationalWebhookEndpointIn, options?: OperationalWebhookEndpointCreateOptions): Promise; get(endpointId: string): Promise; update(endpointId: string, operationalWebhookEndpointUpdate: OperationalWebhookEndpointUpdate): Promise; delete(endpointId: string): Promise; getHeaders(endpointId: string): Promise; updateHeaders(endpointId: string, operationalWebhookEndpointHeadersIn: OperationalWebhookEndpointHeadersIn): Promise; getSecret(endpointId: string): Promise; rotateSecret(endpointId: string, operationalWebhookEndpointSecretIn: OperationalWebhookEndpointSecretIn, options?: OperationalWebhookEndpointRotateSecretOptions): Promise; }