import { IPayioChefConfig, IPayioChefConfigOperation, IPayioChefConfigPrinter, IPayioChefConfigScale, IPayioChefConfigTabs, IPayioChefConfigWebhook } from '../interfaces';
export declare class PayioChefConfigEntity implements IPayioChefConfig {
    createdAt: Date;
    id: string;
    name: string;
    operation: IPayioChefConfigOperation;
    printer: IPayioChefConfigPrinter | null;
    scale: IPayioChefConfigScale;
    tabs: IPayioChefConfigTabs[];
    updatedAt: Date;
    webhook: IPayioChefConfigWebhook[];
    constructor(data?: Partial<PayioChefConfigEntity>);
}
