import { UnitType, Unit, UnitizedNumber, Angle, Length } from '@speleotica/unitized'; import type { FrcsShot } from './FrcsSurveyFile'; export declare function parseMonth(month: string): 1 | 5 | 6 | 4 | 3 | 2 | 7 | 8 | 9 | 10 | 11 | 12; export declare function parseNumber>(s: string, unit: Unit): UnitizedNumber | undefined; export declare function parseAzimuth(s: string, unit: Unit): UnitizedNumber | undefined; export declare function parseSpecialKind(kind: string): FrcsShot['specialKind']; export declare function parseLengthUnit(unit: string): Unit | undefined; export declare function parseAngleUnit(unit: string): Unit | undefined; export declare function parseLrud>(s: string, unit: Unit): UnitizedNumber | undefined; export declare function parseFromStationLruds(line: string, distanceUnit: Unit): [string, NonNullable] | undefined; //# sourceMappingURL=parsers.d.ts.map