export type ChecklistObservation = { speciesCode: string; obsId: string; howManyStr?: string; exoticCategory?: string; present?: boolean; }; import { Location } from './Location'; export type Checklist = { subId: string; protocolId: string; locId: string; loc: Location; durationHrs?: number; allObsReported: boolean; subComments?: string; creationDt: string; lastEditedDt: string; obsDt: string; obsTimeValid: boolean; checklistId: string; numObservers?: number; subnational1Code: string; userDisplayName: string; numSpecies: number; obs: ChecklistObservation[]; }; //# sourceMappingURL=Checklist.d.ts.map