import TextParser from './TextParser';
import RaidTweet from '../RaidTweet';
export declare function parseTweet(text: string): RaidTweet;
export declare function isRaidTweet(text: string): boolean;
export default class TweetParser extends TextParser {
    static readonly parse: typeof parseTweet;
    static readonly isRaidTweet: typeof isRaidTweet;
    parse(text: string): RaidTweet;
    getLanguage(text: string): string;
}
