/**
 * 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 * as runtime from '../runtime';
import { RssFeed } from '../models';
export interface GetRssWithOfficeWithNameRequest {
    office: string;
    name: string;
    since?: string;
    pageSize?: number;
    page?: string;
}
/**
 *
 */
export declare class RSSApi extends runtime.BaseAPI {
    /**
     * Returns RSS feed items limited to the last week.
     * Get rss with office with name
     */
    getRssWithOfficeWithNameRaw(requestParameters: GetRssWithOfficeWithNameRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RssFeed>>;
    /**
     * Returns RSS feed items limited to the last week.
     * Get rss with office with name
     */
    getRssWithOfficeWithName(requestParameters: GetRssWithOfficeWithNameRequest, initOverrides?: RequestInit): Promise<RssFeed>;
}
