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