import { RequestWithoutToken } from '../RequestWithoutToken';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { Webhook } from './Webhook';
import { CustomServiceWebhookResponseStatus } from './CustomServiceWebhookResponseStatus';
export declare class PrivateCustomServiceInboxWebhookRequest implements RequestWithoutToken<CustomServiceWebhookResponseStatus> {
    private readonly whToken;
    private readonly customService;
    private readonly inbox;
    private readonly webhook;
    constructor(whToken: string, customService: string, inbox: string, webhook: Webhook);
    execute(): Promise<IRestResponse<CustomServiceWebhookResponseStatus>>;
}
