//#region src/does-not-end-with/index.d.ts /** * Creates a predicate function that determines if a string does not end with a specific suffix. * * @param suffix - The substring to use as the suffix * @param input - The string to test * * @remarks * - Pure function with no side effects * - Case-sensitive comparison * * @example * ```typescript * const isJsFile = doesNotEndWith('.js'); * isJsFile('app.js'); // false * isJsFile('style.css'); // true * ``` */ declare const doesNotEndWith: (suffix: string) => (input: string) => boolean; //#endregion export { doesNotEndWith }; //# sourceMappingURL=index.d.ts.map