import { Integer } from "../types"; import { ICharacter } from "../types/_character"; type countAnyOfInput = { val: ICharacter; sub: ICharacter; }; export declare function count_any_of(input: countAnyOfInput): Integer; export {};