import { MessageFunctionType, Result } from '../types'; export interface IsNotSuperStringErrors { TARGET_ARGUMENT_NOT_A_STRING: MessageFunctionType; VALUE_ARGUMENT_NOT_A_STRING: MessageFunctionType; } export declare const IS_NOT_SUPER_STRING_ERRORS: IsNotSuperStringErrors; /** * Checks if the string value does not contain the target. * * ### Example * ``` * expect(isNotSuperString("foo", "fooboo").value).toBeTruthy() * ``` * * @param superString The value being checked. * @param subString The target value to perform the check against. */ export declare function isNotSuperString(superString: string, subString: string): Result;