import type { LoaderOptions } from '@loaders.gl/loader-utils'; import type { LASMesh } from "./lib/las-types.js"; export type LASLoaderOptions = LoaderOptions & { las?: { shape?: 'mesh' | 'columnar-table' | 'arrow-table'; fp64?: boolean; skip?: number; colorDepth?: number | string; /** Override the URL to the worker bundle (by default loads from unpkg.com) */ workerUrl?: string; }; onProgress?: Function; }; /** * Loader for the LAS (LASer) point cloud format */ export declare const LASWorkerLoader: { readonly dataType: LASMesh; readonly batchType: never; readonly version: any; readonly worker: true; readonly options: { readonly las: { readonly shape: "mesh"; readonly fp64: false; readonly skip: 1; readonly colorDepth: 8; }; }; readonly name: "LAS"; readonly id: "las"; readonly module: "las"; readonly extensions: ["las", "laz"]; readonly mimeTypes: ["application/octet-stream"]; readonly text: false; readonly binary: true; readonly tests: ["LASF"]; }; //# sourceMappingURL=las-loader.d.ts.map