import type { DocumentRunShading } from './work-document-run-shading'; import { type DocxThemeSource } from './work-docx-theme'; export type DocxRunShadingInspection = { status: 'absent'; spoofedCount: number; } | { status: 'invalid'; spoofedCount: number; } | { status: 'valid'; value: DocumentRunShading; spoofedCount: number; }; export interface ResolvedDocxRunShading { shading: DocumentRunShading | undefined; invalidCount: number; spoofedCount: number; } export declare function inspectDocxRunShading(properties: Element | null | undefined, themeSource?: DocxThemeSource): DocxRunShadingInspection; export declare function resolveDocxRunShading(propertySources: readonly Element[], themeSource?: DocxThemeSource): ResolvedDocxRunShading;