import type { TemplateFn } from "../api.js";
/**
 * Post-processing stage template function. Replaces all leading tabs (per line
 * indentation) with `size` spaces.
 *
 * @param size
 */
export declare const tabsToSpaces: (size?: number) => TemplateFn;
/**
 * Post-processing stage template function. Compacts successive empty lines to a
 * max. of 1 empty line.
 *
 * @param ctx
 */
export declare const compactEmptyLines: TemplateFn;
//# sourceMappingURL=whitespace.d.ts.map