/** * The model for text document. Can be a document translated from XML or a regulation document */ import { RefObject } from 'react'; export interface DocStatement { id: string; text: string; clause: string; paragraph: number; index: number; uiref: RefObject; } export declare type DocParagraph = string[]; export interface DocSection { id: string; title?: string; contents: DocParagraph[]; } export interface MMELDocument { states: Record; id: string; title: string; sections: DocSection[]; type: 'document'; edition?: string; sdo?: string; version: string; } export declare type DocMapIndex = Record; //# sourceMappingURL=document.d.ts.map