/** * trims the beginning whitespaces from the provided string * @example * trimStart(' hello') * // returns 'hello' */ export default function trimStart(str: string): string; //# sourceMappingURL=trimStart.d.ts.map