interface StartsWith { (prefix: string, str: string): boolean; (prefix: 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 */ export declare const startsWith: StartsWith; export default startsWith;