import { EDocType } from '../../general';
import { IOrderMerchant } from '../interfaces/i-merchant';
export declare class OrderMerchantEntity implements IOrderMerchant {
    description: string | null;
    doc: string | null;
    docType: EDocType | null;
    id: string | null;
    name: string | null;
    constructor(data?: Partial<OrderMerchantEntity>);
}
