import type { Schematic } from './types.js'; import type { TagMap } from '@enginehub/nbt-ts'; import type { SchematicType } from './index.js'; /** * Load a schematic given an NBT Tag. * * @param tag The tag * @param type The schematic type, or undefined to auto-detect. * @returns A {@link Schematic}. */ export declare function loadSchematic(tag: TagMap, type?: SchematicType): Schematic;