import { IPayioWebhook } from '../../chef-config';
import { IPayioBigChefConfig } from '../interfaces';
import { PayioBigChefConfigOperationEntity } from './config-operation.entity';
import { PayioBigChefConfigPrinterEntity } from './config-printer.entity';
import { PayioBigChefConfigScaleEntity } from './config-scale.entity';
export declare class PayioBigChefConfigEntity implements IPayioBigChefConfig {
    createdAt: Date;
    id: string;
    name: string;
    operation: PayioBigChefConfigOperationEntity;
    printer: PayioBigChefConfigPrinterEntity | null;
    scale: PayioBigChefConfigScaleEntity;
    updatedAt: Date;
    webhook: IPayioWebhook[];
    constructor(data?: Partial<PayioBigChefConfigEntity>);
}
