/**
 * CWMS Data API
 * CWMS REST API for Data Retrieval
 *
 * The version of the OpenAPI document: 2.4.0-2026.3.16
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { AtomLink } from './AtomLink';
import { RssItem } from './RssItem';
/**
 * The RSS channel containing feed metadata and items
 * @export
 * @interface RssChannel
 */
export interface RssChannel {
    /**
     * Title of the RSS channel
     * @type {string}
     * @memberof RssChannel
     */
    title: string;
    /**
     *
     * @type {AtomLink}
     * @memberof RssChannel
     */
    nextLink?: AtomLink;
    /**
     * Description of the RSS channel
     * @type {string}
     * @memberof RssChannel
     */
    description: string;
    /**
     * List of RSS items in the channel
     * @type {Array<RssItem>}
     * @memberof RssChannel
     */
    items?: Array<RssItem>;
}
export declare function RssChannelFromJSON(json: any): RssChannel;
export declare function RssChannelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RssChannel;
export declare function RssChannelToJSON(value?: RssChannel | null): any;
