/** * Function returns true if the string parameter is longer than a given length, false * if it is not. * @param {string} string - the string to check the length of. * @param {number} config.value - the length that string.length must be greater than. * @returns true if string.length is greater than config.value, false if not. */ declare const mustBeLongerThan: (string: any, config: any) => boolean; export default mustBeLongerThan;