/** * A case insensitive match between strings or RegExp. * * @category String * @category Package : @augment-vir/common * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common) */ export declare function match(haystack: string, needle: string | RegExp): boolean;