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