/** * The refined type of figure - only set when figure classification and summarization is enabled. Possible values: * * * `image`: A photographic image * * `chart`: A data chart or graph * * `diagram`: A schematic or diagram * * `logo`: A company or brand logo * * `other`: Any other type of figure */ export declare const FigureDetailsFigureType: { readonly Other: "other"; readonly Chart: "chart"; readonly Image: "image"; readonly Diagram: "diagram"; readonly Logo: "logo"; }; export type FigureDetailsFigureType = (typeof FigureDetailsFigureType)[keyof typeof FigureDetailsFigureType] | string;