export type DocumentType = 'statute' | 'administrative_regulation' | 'judicial_interpretation' | 'departmental_rule'; export type DocumentStatus = 'in_force' | 'amended' | 'repealed' | 'not_yet_in_force'; export interface LegalDocument { id: string; title: string; title_en?: string; short_name?: string; document_type: DocumentType; status: DocumentStatus; issued_date?: string; in_force_date?: string; url?: string; description?: string; language?: string; } //# sourceMappingURL=documents.d.ts.map