/**
 * Checks if string ends with specified suffix.
 */
declare function endsWith(str: any, suffix: any): boolean;
export default endsWith;
