import * as $dara from '@darabonba/typescript'; export declare class GetExploreUrlRequest extends $dara.Model { /** * @remarks * The cluster ID. * * This parameter is required. * * @example * c9cc4c5e220f8461f9d71b6ec6e****** */ clusterId?: string; /** * @remarks * The query statement that corresponds to the data source. * * @example * {app="buy2"} */ expression?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The type of the Grafana data source. * * This parameter is required. * * @example * prometheus */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }