import { WidgetSelectionSummaryProps } from './types'; /** * Displays the count of selected items with an optional clear button. Commonly used with the LockSelection action to show selection state in widgets. * * @example * ```tsx * setSelectedItems([])} * /> * ``` */ export declare function WidgetSelectionSummary({ selections, onClear, labels, }: WidgetSelectionSummaryProps): import("react/jsx-runtime").JSX.Element;