import { ISalesTable } from './ISaleOffersRepository'; import { ISale } from '../domain/ISale'; import { IServiceLocator } from '@goodgamestudios/webshop-utils'; export declare class SalesTable implements ISalesTable { private client; private env; private logger; constructor(l: IServiceLocator); fetchByGameId(gameId: string): Promise; findById(id: string): Promise; }