/** * Details for formula blocks */ export interface FormulaDetails { /** Indicates this is a formula details object */ type: "formula_details"; /** The LaTeX representation of the detected formula. */ latex?: string; }