import { Parser, ParserContext } from '../'; import { IMessage, ISetting } from '../interface'; type SupportedFields = 'raised' | 'description' | 'name' | 'progress' | 'remaining' | 'target' | 'website'; export declare const methods: { twitch: (parser: Parser, _request: typeof fetch, channelId: string, coreId: string, serviceId: string, field: SupportedFields) => Promise; }; export declare function charity(this: Parser, message: IMessage, _settings: ISetting, { request }: ParserContext, field?: SupportedFields): any; export {};