import { PaymentGatewayDto } from "@feedmepos/payment-model"; export declare const paymentGatewayApi: { read(restaurantId: string): Promise; create(restaurantId: string, gateway: PaymentGatewayDto): Promise; update(restaurantId: string, gatewayDoc: PaymentGatewayDto): Promise; delete(restaurantId: string, paymentGatewayDocId: string): Promise; };