export interface RecordType { mjd: number; xp: number; yp: number; lod: number; dut1: number; } /** * * @returns Raw Earth orientation parameters array * */ export declare const raw: () => Array | undefined; /** * * Return Earth orientation parmaeters for given date * * @param d Date * @returns Earth orientation parameters at given date * */ export declare const get: (d: Date) => RecordType | undefined; /** * The URL where the Earth orientation parameters can be downloaded */ export declare const fileURL = "https://datacenter.iers.org/data/latestVersion/finals.all.iau2000.txt"; /** * * @param raw Raw string containing contents of Earth orientation * parmaters file 'finals.all.iau2000.txt' * @returns true on success, false on failure */ export declare const loadFromString: (raw: string) => boolean; //# sourceMappingURL=earth_orientation_parameters.d.ts.map