import { IHiResOutputRendering, PrintArea } from "@aurigma/design-atoms-model"; export interface IRenderingConfigProvider { getRgbColorProfileName(): string | null; getCmykColorProfileName(): string | null; getGrayscaleColorProfileName(): string | null; getHiResDestinationColorProfileName(): string | null; cmykModeEnabled(): boolean; getHiResRendering(printArea: PrintArea): IHiResOutputRendering | null; }