import { FdoPortalTerminal, FdoTerminalDeviceType, UpdateTerminalByIdDto, type PaginatedResult } from "@feedmepos/payment-entity"; export declare const temrinalApi: { create(payload: { name: string; referenceId: string; }): Promise>; read(payload: { searchKey: string; deviceType: FdoTerminalDeviceType | undefined; limit: number; cursor: string; }): Promise>; readById(id: string): Promise; updateById(id: string, payload: UpdateTerminalByIdDto): Promise; getBindCode(id: string): Promise; unbind(id: string): Promise; delete(id: string): Promise; getBusinessTerminals(): Promise; getRestaurantTerminals(restaurantId: string): Promise; kioskModeRequest(id: string, payload: { enable: boolean; password?: string; }): Promise; };