import { type AttributeFilterComponentProvider } from "../../presentation/dashboardContexts/types.js"; import { type IAttributeFiltersCustomizer } from "../customizer.js"; import { type IDashboardCustomizationLogger } from "./customizationLogging.js"; import { type CustomizerMutationsContext } from "./types.js"; /** * Default implementation of the AttributeFilter rendering customizer. Notice that the state of the customizations * is kept separate from this class. * * This code is responsible for creation of the providers (if needed) and then updating the state * accordingly. The customizer state methods are responsible for doing correct updates of the state itself. This * decoupling is in place so that it is possible to seal the state and prevent write operations from some point * onward. See {@link SealedAttributeFilterCustomizerState} for more motivation behind this. * * @internal */ export declare class DefaultAttributeFiltersCustomizer implements IAttributeFiltersCustomizer { private readonly logger; private readonly mutationContext; private state; constructor(logger: IDashboardCustomizationLogger, mutationContext: CustomizerMutationsContext, defaultProvider?: AttributeFilterComponentProvider); withCustomProvider: (provider: (filter: import("@gooddata/sdk-model").DashboardAttributeFilterItem) => import("../../index.js").CustomDashboardAttributeFilterComponent | undefined) => this; withCustomDecorator: (providerFactory: (next: AttributeFilterComponentProvider) => (filter: import("@gooddata/sdk-model").DashboardAttributeFilterItem) => import("../../index.js").CustomDashboardAttributeFilterComponent | undefined) => this; getAttributeFilterProvider: () => AttributeFilterComponentProvider; sealCustomizer: () => void; } //# sourceMappingURL=attributeFiltersCustomizer.d.ts.map