export default class QuixSqlFormatter { private readonly cfg; private tokenizer; /** * @param {Object} cfg Different set of configurations */ constructor(cfg?: {}); /** * Format the whitespace in a Standard SQL string to make it easier to read * * @param {String} query The Standard SQL string * @return {String} formatted string */ format(query: any): string; }