/***********************************************
 * @license
 * Copyright (c) QBCart Inc. All rights reserved.
 ************************************************/
import type { Container } from '@azure/cosmos';
import type InventoryBanner from '@qbcart/types/eshop/inventory-banner';
import Base from '../base';
export default class Info extends Base {
    constructor(container: Container);
    getInventoryBanners(returnProps: string, lastSynced?: number): Promise<InventoryBanner[]>;
}
