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