import { EWebhookMethod, EWebhookType } from '../../..';
import { IPayioWebhook } from '../interfaces';
export declare class PayioWebhookEntity implements IPayioWebhook {
    id: string;
    method: EWebhookMethod;
    type: EWebhookType;
    url: string;
    constructor(data?: Partial<PayioWebhookEntity>);
    response: any;
}
