import { EIndoorMode } from '../../../order/enums';
import { IPayioOrderIndoor } from '../interfaces/i-order-indoor';
export declare class PayioOrderIndoorEntity implements IPayioOrderIndoor {
    deliveryDateTime: Date;
    mode: EIndoorMode;
    preferential: boolean;
    tab: string;
    table: string;
    constructor(data?: Partial<PayioOrderIndoorEntity>);
}
