import { SafeHtml } from '@angular/platform-browser'; /** * Configuration to describe an RDS API query */ export declare class RdsRawApiQuery { html: SafeHtml; path: string; /** * @param html Formatted html to represent the api query * @param path The actual encoded path, useful for copy and pasting into the browser */ constructor(html: SafeHtml, path: string); }