import { BBCodeInstruction } from "../../PackageSystem/Instructions/Customization/BBCodeInstruction.js";
import { NamedObjectDeletionFileCompiler } from "../NamedObjectDeletionFileCompiler.js";
/**
 * Provides the functionality to compile bb-codes.
 */
export declare class BBCodeFileCompiler extends NamedObjectDeletionFileCompiler<BBCodeInstruction> {
    /**
     * Initializes a new instance of the {@link BBCodeFileCompiler `BBCodeFileCompiler`} class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: BBCodeInstruction);
    /**
     * @inheritdoc
     */
    protected get SchemaLocation(): string;
    /**
     * @inheritdoc
     */
    protected get ObjectTagName(): string;
    /**
     * @inheritdoc
     *
     * @returns
     * The serialized import.
     */
    protected CreateImport(): Element;
}
