import { Part } from "./merge";
export declare type NamePart = Part & {
    nick: string;
};
declare function findNames(text: string, nicks: string[]): NamePart[];
export default findNames;
