import type { EarthOrientationParameters } from "../types.js"; export interface EarthOrientationRecord extends EarthOrientationParameters { readonly modifiedJulianDate: number; } export interface EarthOrientationProvider { get(date: Date): EarthOrientationParameters | undefined; } export declare function createEarthOrientationTable(records: readonly EarthOrientationRecord[]): EarthOrientationProvider; export declare function parseEarthOrientationCsv(text: string): readonly EarthOrientationRecord[]; //# sourceMappingURL=eop.d.ts.map