import { IDic } from "../publicApi";
/**
 * @description
 * Returns a map.
 * If you provide the map with an abstraction that is not used by the entry points
 * you will get back `false`, else you will get `true`.
 */
export declare function isLiveAbstraction(_: {
    dic: IDic;
    entryPointAbstractions: symbol[];
    /**
     * @description
     * Abstraction to mark as non dead in the returned map.
     */
    ignoreAbstractions: symbol[];
}): Map<symbol, boolean>;
