import { Package } from "../../PackageSystem/Package.js";
import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler.js";
/**
 * Provides the functionality to compile package-files.
 */
export declare class PackageFileCompiler extends WoltLabXMLCompiler<Package> {
    /**
     * Initializes a new instance of the {@link PackageFileCompiler `PackageFileCompiler`} class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: Package);
    /**
     * @inheritdoc
     */
    protected get TagName(): string;
    /**
     * @inheritdoc
     */
    protected get SchemaLocation(): string;
    /**
     * @inheritdoc
     *
     * @returns
     * The serialized document.
     */
    protected CreateDocument(): Document;
}
