/** * Test if a string starts with another string. * * This is a more performant version of the `String.prototype.endsWith` method. * * @link https://jsbench.me/1hlkqqd0ff/2 * @link https://js-toolkit.studiometa.dev/utils/string/endsWith.html */ export declare function endsWith(string: string, search: string): boolean;