import { MigrationScript } from ".."; interface SqlFileTaskParameters { /** Name of the RDS driver to use */ driverName: string; /** Path to SQL file to run on up migrations */ upFile?: string; /** Path to SQL file to run on down migrations */ downFile?: string; } export declare function SqlFile(params: SqlFileTaskParameters): Partial; export {};