import type { LookerDashboardOptions, LookerEmbedFilterParams, ILookerEmbedDashboard } from './types'; import type { EmbedConnection } from './EmbedConnection'; export declare class DashboardConnection implements ILookerEmbedDashboard { private _connection; constructor(_connection: EmbedConnection); run(): void; stop(): void; edit(): void; updateFilters(params: LookerEmbedFilterParams): void; setOptions(options: LookerDashboardOptions): void; openScheduleDialog(): Promise; }