//#region src/string/trimStart.d.ts /** * Removes leading whitespace or specified characters from string. * * @param str - The string to trim * @param chars - The characters to remove * @returns The trimmed string * * @example * trimStart(' abc ') // => 'abc ' * trimStart('-_-abc-_-', '-_') // => 'abc-_-' */ declare function trimStart(str: string, chars?: string): string; //#endregion export { trimStart }; //# sourceMappingURL=trimStart.d.mts.map