import { IDMLGraphicContext } from './Graphic.js'; export type InkType = 'process' | 'spot'; export type InkConcreteType = 'normal' | 'registration' | 'transparent'; export declare class Ink { private id; private type; private context; private inkType; private name?; private neutralDensity?; private printingSequence?; private inkAlias?; private angle?; private convertToProcess?; private frequency?; private printInk?; private trapOrder?; constructor(id: string, type: InkType, options: { inkType: InkConcreteType; name?: string; neutralDensity?: number; printingSequence?: number; inkAlias?: string; angle?: number; convertToProcess?: boolean; frequency?: number; printInk?: boolean; trapOrder?: number; }, context: IDMLGraphicContext); serialize(): import("flat-svg").ElementNode; static parseElement(element: Element, context: IDMLGraphicContext): Ink; } //# sourceMappingURL=Ink.d.ts.map