import { PcrTestRecordConfidence } from './PcrTestRecordConfidence'; import { PcrTestRecordWordsBlockList } from './PcrTestRecordWordsBlockList'; export declare class PcrTestRecordResult { name?: string; private 'sampling_time'?; private 'test_time'?; private 'test_result'?; confidence?: PcrTestRecordConfidence; private 'words_block_count'?; private 'words_block_list'?; constructor(name?: string, samplingTime?: string, testTime?: string, testResult?: string, confidence?: PcrTestRecordConfidence, wordsBlockCount?: number, wordsBlockList?: Array); withName(name: string): PcrTestRecordResult; withSamplingTime(samplingTime: string): PcrTestRecordResult; set samplingTime(samplingTime: string | undefined); get samplingTime(): string | undefined; withTestTime(testTime: string): PcrTestRecordResult; set testTime(testTime: string | undefined); get testTime(): string | undefined; withTestResult(testResult: string): PcrTestRecordResult; set testResult(testResult: string | undefined); get testResult(): string | undefined; withConfidence(confidence: PcrTestRecordConfidence): PcrTestRecordResult; withWordsBlockCount(wordsBlockCount: number): PcrTestRecordResult; set wordsBlockCount(wordsBlockCount: number | undefined); get wordsBlockCount(): number | undefined; withWordsBlockList(wordsBlockList: Array): PcrTestRecordResult; set wordsBlockList(wordsBlockList: Array | undefined); get wordsBlockList(): Array | undefined; } //# sourceMappingURL=PcrTestRecordResult.d.ts.map