export declare class Citation {
    [key: string]: any;
    raw: string;
    /** Importance level of a citation - used in sorting of different citations. Lower is more important */
    importanceLevel: number;
    isNeutral?: boolean;
    year?: string;
    volume?: string;
    reporter?: string;
    series?: string;
    firstPage?: string;
    remarks?: string;
    reporterYearAsVolume?: string;
    reporterCaseNumber?: string;
}
