/** * Does string end with `$end` string. * * @param {string} $str - To match * @param {string} $end - Has to end with this. * @return {boolean} */ export declare function StringEndsWith($str: string, $end: string): boolean;