import { MessageFunctionType, Result } from '../types'; export interface IsURLPathContainedErrors { URL_ARGUMENT_NOT_A_STRING: MessageFunctionType; PATH_ARGUMENT_NOT_A_STRING: MessageFunctionType; } export declare const IS_URL_PATH_CONTAINED_ERRORS: IsURLPathContainedErrors; /** * Checks whether the `url` path * contains the `path` argument. * * Note that the validation of the url * argument should be performed before passing * the `url` argument to this validation. * * ### Example * ``` * expect(isURLPathsEqual(urlA, "/aa/bb/").value).toBeTruthy(); * ``` * @param url The url string * @param path The path string */ export declare function isURLPathContained(url: string, path: string): Result;