/**
 * Replace a piece of text in a multine sql statement.
 * @param sql intial sql
 * @param input text to insert
 * @param location
 */
export declare const replaceText: (sql: string, input: string, location: {
    startLine: number;
    endLine: number;
    startColumn: number;
    endColumn: number;
}) => string;
//# sourceMappingURL=replaceText.d.ts.map