import PPTX from "../reader"; import Theme from "../reader/Theme"; import { BackgroundImageType, ColorType, GradFillType } from "../types/color"; import { XMLElementsJson } from "./xml"; export interface SolidFill { "a:srgbClr"?: { attrs: { val: string; }; "a:alpha"?: { attrs: { val: string; }; }; }; "a:schemeClr"?: { attrs: { val: string; }; "a:alpha"?: { attrs: { val: string; }; }; }; } export declare function getSolidFillColor(solidFill: SolidFill, theme: Theme, node?: { getColorThemeName(string: any): string; }): ColorType; export declare function getGradFillColor(gradFill: XMLElementsJson, theme: Theme, node?: { getColorThemeName(string: any): string; }): GradFillType; export declare function getBlipFill(blipFill: XMLElementsJson, pptx: PPTX, ctx: any): BackgroundImageType; export declare function getRenderColor(colorConfig: ColorType, options?: { light?: number; dark?: number; }): string;