import * as React from 'react'; import type { IDisableable, IDropdownTogglerProps, IHasCX } from '@epam/uui-core'; import type { FiltersPanelProps } from './FiltersPanel'; import type { JSX } from 'react'; export interface FilterToolbarItemTogglerProps extends IDropdownTogglerProps, IDisableable, IHasCX, Pick, 'size'> { selection?: React.ReactNode[]; postfix?: string | null | JSX.Element; title?: string; maxWidth?: number; predicateName: string | null; } export declare const FilterPanelItemToggler: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=FilterPanelItemToggler.d.ts.map