import powerbi from "powerbi-visuals-api"; import IColorPalette = powerbi.extensibility.ISandboxExtendedColorPalette; import IColorInfo = powerbi.IColorInfo; export declare class MockIColorPalette implements IColorPalette { /** * This array represents the default colors of the IColorPalette. */ private static DefaultColors; private colors; private colorIndex; constructor(colors?: IColorInfo[]); getColor(key: string): IColorInfo; isHighContrast: true; foreground: { value: string; }; foregroundLight: { value: string; }; foregroundDark: { value: string; }; foregroundNeutralLight: { value: string; }; foregroundNeutralDark: { value: string; }; foregroundNeutralSecondary: { value: string; }; foregroundNeutralSecondaryAlt: { value: string; }; foregroundNeutralSecondaryAlt2: { value: string; }; foregroundNeutralTertiary: { value: string; }; foregroundNeutralTertiaryAlt: { value: string; }; foregroundSelected: { value: string; }; foregroundButton: { value: string; }; background: { value: string; }; backgroundLight: { value: string; }; backgroundNeutral: { value: string; }; backgroundDark: { value: string; }; hyperlink: { value: string; }; visitedHyperlink: { value: string; }; mapPushpin: { value: string; }; shapeStroke: { value: string; }; selection: { value: any; }; separator: { value: any; }; negative: { value: any; }; neutral: { value: any; }; positive: { value: any; }; reset(): IColorPalette; }