import { InfoIconProps } from '@wix/design-system';
import React, { ReactNode } from 'react';
import type { FiltersMap } from '@wix/bex-core';
export interface ToolbarTitleProps {
/**
* Title to display at the left of the table's toolbar.
* @external
*/
title: string | ReactNode;
/**
* Subtitle to display at the left of the table's toolbar under the title.
* @param {string} text The subtitle text
* @param {[InfoIconProps](https://www.docs.wixdesignsystem.com/?path=/story/components-form--infoicon)} info info to display an info icon next to the subtitle text
* @param {string} learnMore an object with a `url`(required) and a `label`(optional), for displaying a link button on the subtitle
* @external
*/
subtitle?: {
text: string;
info?: InfoIconProps;
learnMore?: {
url: string;
label?: string;
};
};
/**
* Whether to show a total count badge next to the title.
* @external
*/
showTotal?: boolean;
/**
* Maximum number of items that can be displayed.
*
* Shows only when `showTotal` is `true`.
* @external
*/
itemsLimit?: number;
}
export declare const ToolbarTitle: (({ title, subtitle, showTotal, itemsLimit }: ToolbarTitleProps) => React.JSX.Element) & {
displayName: string;
};
//# sourceMappingURL=ToolbarTitle.d.ts.map