interface RssChannelOptions { channelCopyright: string; channelDescription: string; channelDocs: string; channelFeedSelfUrl?: string; channelGenerator: string; channelLanguage: string; channelLastBuildDate: string; channelLink: string; channelPubDate: string; channelTitle: string; } export declare function rssFeed(itemsXml: string, channelOptions: RssChannelOptions): string; export {};