/** * Removes specified characters from the beginning of a string. * * @since 1.0.0 * * @param {string} [str=''] - The string to trim. * @param {string} [characters=''] - The characters to remove from the beginning of the string. * * @return {string} - The trimmed string. * * @example * * trimStart(' Hello, World '); * // => 'Hello, World ' * * trimStart('!!!Hello, World', '!'); * // => 'Hello, World' */ declare const trimStart: (str?: string, characters?: string) => string; export default trimStart;