import { IHttpClient } from '../core/client-interface';
export declare abstract class BaseResource {
    protected readonly client: IHttpClient & {
        shopId?: string;
    };
    protected readonly shopId?: string;
    constructor(client: IHttpClient & {
        shopId?: string;
    });
    protected getShopPath(path: string, shopId?: string): string;
}
