export interface Reference {
    href?: string;
    /**
     * Detailed title (with paragraph number, etc.)
     */
    long_title?: string;
    note?: string;
    title?: string;
}
export type ReferencesByInstant = {
    [instant: string]: Reference[];
};
