import type { LoaderOptions } from '@loaders.gl/loader-utils'; import type { ArrowTable } from '@loaders.gl/schema'; export type GeoArrowLoaderOptions = LoaderOptions & { arrow?: { shape?: 'arrow-table' | 'binary-geometry'; }; }; /** ArrowJS table loader */ export declare const GeoArrowWorkerLoader: { readonly options: { readonly arrow: { readonly shape: "arrow-table"; }; }; readonly dataType: ArrowTable; readonly batchType: never; readonly name: "Apache Arrow"; readonly id: "arrow"; readonly module: "arrow"; readonly version: any; readonly category: "table"; readonly extensions: ["arrow", "feather"]; readonly mimeTypes: ["application/vnd.apache.arrow.file", "application/vnd.apache.arrow.stream", "application/octet-stream"]; readonly binary: true; readonly tests: ["ARROW"]; }; //# sourceMappingURL=geoarrow-loader.d.ts.map