import { type DashboardAttributeFilterItem } from "@gooddata/sdk-model"; import { type IAttributeFilterBaseProps } from "@gooddata/sdk-ui-filters"; /** * Result of the {@link useParentFilters} hook, that can be used as parent filtering input props for {@link @gooddata/sdk-ui-filters#AttributeFilter}. * * @public */ export type UseParentFiltersResult = Pick; /** * Returns parent filtering input props for {@link @gooddata/sdk-ui-filters#AttributeFilter} for particular dashboard attribute filter. * * @param filter - dashboard filter to get the parent filter-related data * @param tabId - optional tab identifier to read filter context from a specific tab instead of the active one * * @public */ export declare const useParentFilters: (filter: DashboardAttributeFilterItem, tabId?: string | undefined) => UseParentFiltersResult; //# sourceMappingURL=useParentFilters.d.ts.map