import { DineroObject } from '~backend/utils/model'; import * as I from './pos-api.interface'; export declare class DeductCreditDto implements I.DeductCreditDto { amount: DineroObject; member: string; bill: string; otp: string; } export declare class RefundCreditDto implements I.RefundCreditDto { id: string; bill: string; }