import { FrcsTrip } from './FrcsTrip'; import { SegmentParseError } from 'parse-segment'; export type FrcsSurveyFile = { cave?: string | null; columns?: FrcsShotColumnConfig; location?: string | null; comment?: string | null; trips: Array; errors?: Array | null; }; export type FrcsShotColumnConfig = { toStation: number; fromStation: number; distance: number; distanceFeet: number; distanceInches: number; kind: number; exclude: number; frontsightAzimuth: number; backsightAzimuth: number; frontsightInclination: number; backsightInclination: number; left: number; right: number; up: number; down: number; }; export declare const defaultFrcsShotColumnConfig: FrcsShotColumnConfig; //# sourceMappingURL=FrcsSurveyFile.d.ts.map