import EsriColor from "@arcgis/core/Color"; import type { ColorJson } from "@vertigis/arcgis-extensions/json/SymbolJson"; import type { BrandingColors } from "@vertigis/viewer-spec/app-config/common/BrandingColors"; import type { BrandingThemeTemplate } from "@vertigis/viewer-spec/app-config/common/BrandingThemeProperties"; /** * Creates a color palette from a provided accent color and theme. * * @param accentColor The accent color to be used in the palette. * @param theme The theme to generate the palette from. */ export declare function createPalette(accentColor: string | EsriColor | ColorJson, theme: BrandingThemeTemplate): BrandingColors;