export interface PaletteColorEntry { name: string; color: string; deviceColor: string; } export type PaletteRegistry = Record; export declare const normalizePaletteKey: (name: string | undefined) => string; export declare const getNamedEntries: (registry: PaletteRegistry, name: string) => PaletteColorEntry[]; export declare const getNamedColors: (registry: PaletteRegistry, name: string) => string[]; export declare const getNamedDeviceColors: (registry: PaletteRegistry, name: string) => string[]; export declare const getNamedRoles: (registry: PaletteRegistry, name: string) => string[]; export declare const alignReplacementColors: (sourceColors: string[], sourceRoles: string[], replacementColors: string[], replacementRoles: string[]) => string[];