import type { FdoPaymentGatewayV2, FdoPaymentGatewayV2UpsertDto } from "@feedmepos/payment-entity"; export declare const paymentGatewayApi: { get(restaurantId: string): Promise; upsert(restaurantId: string, body: FdoPaymentGatewayV2UpsertDto): Promise; delete(restaurantId: string, gatewayId: string): Promise; grabSync(restaurantId: string): Promise<{ merchantID: string; }>; };