import type { Argv, Channel, Context, Dict } from 'koishi'; import type { DynamicNotifiction } from '../model'; import type { IConfig } from '.'; export declare function twitterAdd({ session }: Argv, twitter: { twitterId: string; twitterName: string; twitterRestId: string; }, list: Dict<[ Pick, DynamicNotifiction ][]>, _ctx: Context): Promise; export declare function twitterBatch({ session }: Argv, twitter: { twitterId: string[]; twitterName: string[]; twitterRestId: string[]; }, list: Dict<[ Pick, DynamicNotifiction ][]>, _ctx: Context): Promise; export declare function twitterRemove({ session }: Argv, twitter: { twitterId: string; twitterName: string; twitterRestId: string; }, list: Dict<[ Pick, DynamicNotifiction ][]>): Promise; export declare function twitterList({ session, }: Argv): Promise; export declare function twitterSearch(_: Argv, twitter: { twitterId: string; twitterName: string; twitterRestId: string; }, _list: Dict<[ Pick, DynamicNotifiction ][]>, ctx: Context, config: IConfig): Promise; export declare function twitterCookie({ session, options, }: Argv, _twitter: { twitterId: string; twitterName: string; twitterRestId: string; }, _list: Dict<[ Pick, DynamicNotifiction ][]>, ctx: Context): Promise;