/*****************************************************************************************************************/
/*****************************************************************************************************************/
export interface NancyRomanRecord {
    ral: number;
    rau: number;
    decl: number;
    name: string;
}
/*****************************************************************************************************************/
export declare const isNancyRomanRecord: (record: unknown) => record is NancyRomanRecord;
/*****************************************************************************************************************/
/**
 *
 * @description Constellation Boundary Lookup Table
 * @see https://iopscience.iop.org/article/10.1086/132034/pdf
 *
 * A table permits rapid determination of the constellation in which an object is
 * located from its J1875.0 position.
 *
 * @citation Nancy G. Roman 1987 The Astronomical Society of the Pacific 99 695
 *
 */
export declare const NANCY_ROMAN_TABLE_I: NancyRomanRecord[];
/*****************************************************************************************************************/
