import type { LoaderContext } from '@loaders.gl/loader-utils';
import type { I3SLoaderOptions } from "./i3s-loader.js";
import { I3STileContent } from "./types.js";
/**
 * Loader for I3S - Indexed 3D Scene Layer
 */
export declare const I3SContentLoader: {
    readonly dataType: I3STileContent | null;
    readonly batchType: never;
    readonly name: "I3S Content (Indexed Scene Layers)";
    readonly id: "i3s-content";
    readonly module: "i3s";
    readonly worker: true;
    readonly version: any;
    readonly mimeTypes: ["application/octet-stream"];
    readonly parse: typeof parse;
    readonly extensions: ["bin"];
    readonly options: {
        readonly 'i3s-content': {};
    };
};
declare function parse(data: any, options?: I3SLoaderOptions, context?: LoaderContext): Promise<I3STileContent | null>;
export {};
//# sourceMappingURL=i3s-content-loader.d.ts.map