/** * ## ms * ### A Powerful, efficient yet simple system to convert human-readable time to ms * * @param {string} str `string` * @returns {number} `number` * * --- * * @link [`Documentation`](https://simplyd.js.org/docs/misc/ms) * @example simplydjs.ms('1h') */ export declare function ms(str: string): number;