import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { Interpretation } from "./Interpretation.js"; import { ResultType } from "./ResultType.js"; export declare const SimulationFlags: core.serialization.ObjectSchema; export declare namespace SimulationFlags { interface Raw { interpretation?: Interpretation.Raw | null; result_types?: ResultType.Raw[] | null; has_missing_results?: boolean | null; } }