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