import { FeedFormat, IFeedsConfiguration } from "./types"; export interface IGetFeedTemplateOptions { feedsConfig: IFeedsConfiguration; format: FeedFormat; version: string; } /** * Get the feed template for a given feed format and version, accounting * for version fallbacks and default templates as necessary. * @param opts.feedConfig - the raw feeds configuration object * @param opts.format - the feed format * @param opts.version - the feed version * @returns a feed template object */ export declare function getFeedTemplate(opts: IGetFeedTemplateOptions): Record;