import { IPaymentMethod } from "./i-payment-method";
export interface IDeviceAppConfig {
    paymentsOffline: IPaymentMethod[];
    checkoutOnline: boolean;
    checkoutOffline: boolean;
    checkoutPix: boolean;
    minShopValue: number;
}
