interface StartsWith { (a: string, str: string): boolean; (a: string): (str: string) => boolean; } /** * Checks if a string starts with the provided prefix * * @param {string} prefix * @param {string} str * @return {Boolean} * @example * * startsWith('a', 'abc') //=> true * startsWith('b', 'abc') //=> false */ declare const _default: StartsWith; export default _default;