//#region src/does-not-start-with/index.d.ts /** * Creates a predicate function that determines if a string does not start with a specific prefix. * * @param prefix - The substring to use as the prefix * @param input - The string to test * * @remarks * - Pure function with no side effects * - Case-sensitive comparison * - Composed using `not` and `doesStartWith` for functional composition * * @example * ```typescript * const doesNotStartWithHttp = doesNotStartWith('http'); * doesNotStartWithHttp('https://example.com'); // false * doesNotStartWithHttp('ftp://example.com'); // true * ``` */ declare const doesNotStartWith: (prefix: string) => (input: string) => boolean; //#endregion export { doesNotStartWith }; //# sourceMappingURL=index.d.ts.map