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