/** * Options for figure blocks. */ export interface ParseConfigBlockOptionsFigures { /** Whether to include figures in the output. */ enabled?: boolean; /** Whether to clip and extract images from figures. */ figureImageClippingEnabled?: boolean; /** Whether to enable advanced chart extraction using vision models for improved data extraction from charts. */ advancedChartExtractionEnabled?: boolean; }