import type { FdoPaymentType } from '@feedmepos/core/entity'; export declare const offlinePaymentApi: { get(restaurantId: string): Promise; create(restaurantId: string, data: Omit): Promise; update(restaurantId: string, data: FdoPaymentType): Promise; delete(restaurantId: string, id: string): Promise; };