/** * Pads a string with additional characters at the end to reach a specified length. * * @since 1.0.0 * * @param {string} str - The string to pad. * @param {number} length - The target length of the string. * @param {string} chars - The characters to use for padding. Defaults to a space. * * @returns {string} - The padded string. * * @example * * padEnd('hello', 8); // 'hello ' * padEnd('hello', 8, '-'); // 'hello---' */ declare const padEnd: (str?: string, length?: number, chars?: string) => string; export default padEnd;