import type { ServiceIdentifier } from './explicit-binding';
export declare const CONTRIBUTION_STORE_STATE_SYMBOL: unique symbol;
export interface IContributionStoreState<T = any> {
    store: Map<ServiceIdentifier<T>, Set<T>>;
}
export declare function getContributionStoreState(): IContributionStoreState;
