import { EZeEvent } from '../enums';
import { IPayioZeConfig } from '../interfaces/i-ze-config';
export declare class PayioZeConfigEntity implements IPayioZeConfig {
    autoAccept: boolean;
    createdAt: Date;
    events: EZeEvent[];
    id: string;
    name: string;
    soundAlert: boolean;
    updatedAt: Date;
    webhook: string[];
    constructor(data?: Partial<PayioZeConfigEntity>);
}
