import { Settings } from './settings'; /** * Format a list of numbers into an accounting column, padding with whitespace * to line up currency symbols, thousand separators and decimals places. * * Returns array of accouting-formatted number strings of same length. * * NB: `white-space:pre` CSS rule is required on the list container to prevent * browsers from collapsing the whitespace in the output strings. * * **Usage:** * * ```js * formatColumn([123.5, 3456.49, 777888.99, 12345678, -5432], { symbol: "$ " }); * ``` * * @access public * @param {Array} list - Array of numbers to format * @param {Object} [opts={}] - Object containing all the options of the method * @return {Array} - Array of accouting-formatted number strings of same length */ declare function formatColumn(list: any, opts?: Settings): any; export default formatColumn;