import { EEvolutionEvent } from '../enums';
import { IEvolutionWebhook } from '../interfaces/i-webhook';
export declare class EvolutionWebhookEntity implements IEvolutionWebhook {
    enabled: boolean;
    events: EEvolutionEvent[];
    url: string;
    webhookBase64: boolean;
    webhookByEvents: boolean;
    constructor(data?: Partial<EvolutionWebhookEntity>);
}
