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