import { FileSystemInstruction } from "../FileSystem/FileSystemInstruction.js";
import { IFileSystemInstructionOptions } from "../FileSystem/IFileSystemInstructionOptions.js";
/**
 * Represents an instruction which executes sql-code.
 */
export declare class SQLInstruction extends FileSystemInstruction {
    /**
     * Initializes a new instance of the {@link SQLInstruction `SQLInstruction`} class.
     *
     * @param options
     * The options of the sql-instruction.
     */
    constructor(options: IFileSystemInstructionOptions);
    /**
     * @inheritdoc
     */
    get Type(): string;
    /**
     * @inheritdoc
     *
     * @param source
     * The source of the instruction.
     *
     * @returns
     * The default filename.
     */
    protected MakeDefaultFileName(source: string): string;
}
