import { FeedFormat, IFeedsConfiguration } from "./types"; export interface ISetFeedTemplateOptions { feedsConfig: IFeedsConfiguration; format: FeedFormat; version: string; updatedTemplate: Record; } /** * Sets the feed template for a given feed format and version. Always use this function * to update feed templates rather than interacting with the feeds configuration object directly. * @param opts.feedsConfig - the raw feeds configuration object * @param opts.format - the feed format * @param opts.version - the feed version * @param opts.updatedTemplate - the updated feed template * @returns a new feeds configuration object with the updated template */ export declare function setFeedTemplate(opts: ISetFeedTemplateOptions): Record;