import type * as Vital from "../../../../index.js"; /** * @example * { * name: "name", * method: "testkit", * description: "description" * } */ export interface CreateLabTestRequest { markerIds?: number[]; providerIds?: string[]; name: string; method: Vital.LabTestCollectionMethod; description: string; fasting?: boolean; }