import powerbi from "powerbi-visuals-api"; import Selector = powerbi.data.Selector; import SelectorsByColumn = powerbi.data.SelectorsByColumn; import ISelectionId = powerbi.visuals.ISelectionId; export declare class MockISelectionId implements ISelectionId { private key; private measures; constructor(key: string); compareMeasures: (current: any, others: any) => boolean; equals(other: ISelectionId): boolean; includes(other: ISelectionId, ignoreHighlight?: boolean): boolean; getKey(): string; getSelector(): Selector; getSelectorsByColumn(): SelectorsByColumn; hasIdentity(): boolean; }