/** * Formats a string according to a format configuration object. * @param {object} format The format configuration object. * @param {string} value The string value to be formatted. * @returns A formatted version of the value. */ declare const formatData: (format: any, value: any) => any; export default formatData;