import { EBarcodeFormat } from '../../chef-config';
import { ETefProvider } from '../enums';
import { IPayioCashConfigOperation, IPayioCashConfigOperationTef } from '../interfaces/i-cash-config-operation';
export declare class PayioCashConfigOperationEntity implements IPayioCashConfigOperation {
    barcodeFormat: EBarcodeFormat;
    tabFormat: string | null;
    tef: IPayioCashConfigOperationTef;
    pdvId: string;
    visionDeviceId: string;
    constructor(data?: Partial<PayioCashConfigOperationEntity>);
}
export declare class PayioCashConfigOperationTefEntity implements IPayioCashConfigOperationTef {
    companyNumber: string;
    provider: ETefProvider;
    terminal: string;
    tokenOtp: string;
    tokenRegister: string;
    url: string;
}
