export declare type WebHookStatus = { uri?: string; name?: string; /** * indicates if the webhook is up and running */ up?: boolean; /** * description if the webhook is down, otherwise empty string */ failureReason?: string; /** * time of last failure (seconds from epoch) */ lastFailureTime?: number; messagesQueued?: number; messagesQueuedMB?: number; };