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