import { type DashboardEventBody, type IDashboardEvent } from "./base.js"; /** * This event is emitted after dashboard parameter runtime values have been reset on the active tab. * * @alpha */ export interface IDashboardParametersSelectionReset extends IDashboardEvent { readonly type: "GDC.DASH/EVT.PARAMETERS.SELECTION.RESET"; } /** * @alpha */ export declare function parametersSelectionReset(correlationId?: string): DashboardEventBody; /** * Tests whether the provided object is an instance of {@link IDashboardParametersSelectionReset}. * * @param obj - object to test * * @alpha */ export declare const isDashboardParametersSelectionReset: (obj: unknown) => obj is IDashboardParametersSelectionReset; //# sourceMappingURL=parameters.d.ts.map