import { Payment } from '@mollie/api-client';
interface IWebhook {
    id: string;
}
interface IError {
    error: any;
    status: string;
    metadata?: any;
}
export declare class WebhookService {
    private readonly apiKey;
    constructor(apiKey: string);
    private readonly mollieClient;
    checkPayment(order: IWebhook): Promise<Payment | IError>;
}
export {};
