import { Service } from "../serviceSDK"; export interface QuickAddOrderItemInput { orderId: string; itemName: string; unitPrice: string; quantity?: string; unit?: string | null; itemType?: string | null; vatRate?: string | null; customAttributes?: any; } export declare class StorefontService extends Service { constructor(endpoint: string, orgId: string, storeId: string); getRevenueStatisticByGroupOrCategory(dataQuery: any, groupBy: any): Promise; getRevenueStatisticByProduct(dataQuery: any): Promise; quickAddOrderItem(input: QuickAddOrderItemInput): Promise; }