import React from 'react'; import { Ti18nDocument } from '../../types'; export declare const useDocumentsInformation: (schema: string) => { pending: boolean; setPending: React.Dispatch>; documents: Ti18nDocument[]; baseDocuments: Ti18nDocument[]; translatedDocuments: Ti18nDocument[]; idStructureMismatchDocuments: Ti18nDocument[]; documentsSummaryInformation: { idStructureMismatch: Ti18nDocument[]; missingLanguageField: Ti18nDocument[]; missingDocumentRefs: Ti18nDocument[]; orphanDocuments: Ti18nDocument[]; referenceBehaviorMismatch: Ti18nDocument[]; baseLanguageMismatch: Ti18nDocument[]; }; fetchInformation: (selectedSchema: string) => Promise; };