import type { LookerEmbedFilterParams, ILookerEmbedLook } from './types'; import type { EmbedConnection } from './EmbedConnection'; export declare class LookConnection implements ILookerEmbedLook { private _connection; constructor(_connection: EmbedConnection); /** * Convenience method for sending a run message to the embedded Look. */ run(): void; /** * Convenience method for updating the filters of the embedded Look. * * @param filters A set of filter parameters to update */ updateFilters(params: LookerEmbedFilterParams): void; }