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