import { Part } from "./merge";
export declare type ChannelPart = Part & {
    channel: string;
};
declare function findChannels(text: string, channelPrefixes: string[], userModes: string[]): ChannelPart[];
export default findChannels;
