import { Context } from 'koishi';
export interface RSSItem {
    title: string;
    link: string;
    pubDate: number;
    guid: string;
    description: string;
    isRetweet: boolean;
}
export declare function getTwitterList(nitterUrl: string, ctx: Context, account: string): Promise<RSSItem[]>;
