import { EOrderPaymentMethod } from '../enum/order-payment-method.enum';
import { EPaymentType } from '../enum/payment-type.enum';
export declare class IPaymentMethod {
    active: boolean;
    createdAt: number;
    id: string;
    index: number;
    method: EOrderPaymentMethod;
    name: string;
    type: EPaymentType;
    updatedAt: number;
    constructor(obj: IPaymentMethod);
}
