import { type DashboardEventBody, type IDashboardEvent } from "./base.js"; /** * This event is emitted when the create button is clicked. * * @internal */ export interface ICreateInsightRequested extends IDashboardEvent { readonly type: "GDC.DASH/EVT.CREATE_INSIGHT_REQUESTED"; } /** * Create {@link ICreateInsightRequested} event * * @internal */ export declare function createInsightRequested(correlationId?: string): DashboardEventBody; /** * Tests whether the provided object is an instance of {@link ICreateInsightRequested}. * * @param obj - object to test * @internal */ export declare const isCreateInsightRequested: (obj: unknown) => obj is ICreateInsightRequested; //# sourceMappingURL=lab.d.ts.map