import { OccConfig, OccEndpoints } from '@spartacus/core';
interface StoreFinderOccEndpoints extends OccEndpoints {
    store: string;
    stores: string;
    storescounts: string;
}
interface StoreFinderOccConfig extends OccConfig {
    backend: {
        occ: {
            endpoints: StoreFinderOccEndpoints;
        };
    };
}
export declare const occStoreFinderConfig: StoreFinderOccConfig;
export {};
