import ReadDicomEncapsulatedPdfOptions from './ReadDicomEncapsulatedPdfOptions.js'; import ReadDicomEncapsulatedPdfNodeResult from './ReadDicomEncapsulatedPdfNodeResult.js'; /** * Extract PDF file from DICOM encapsulated PDF. * * @param {Uint8Array} dicomFile - Input DICOM file * * @returns {Promise} - result object */ declare function readDicomEncapsulatedPdfNode(dicomFile: Uint8Array, options?: ReadDicomEncapsulatedPdfOptions): Promise; export default readDicomEncapsulatedPdfNode;