import { InfoIconProps } from '@wix/design-system'; import { ReactNode } from 'react'; import { FiltersMap } from '../..'; export interface ToolbarTitleProps { /** * Display a title at the left of the table toolbar. * @external */ title: ReactNode; /** * Display a subtitle at the left of the table 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; }; }; /** * Indicates whether to show a total counter next to the table title. Please make sure to hide the counter in the page title (see hideTotal in [CollectionPage](/pages/cairo/?path=/story/components-page--collectionpage)) * @external */ showTotal?: boolean; /** * Shows the limit of items. Will bw shown when showTotal=true * @external */ itemsLimit?: number; } export declare const ToolbarTitle: (({ title, subtitle, showTotal, itemsLimit }: ToolbarTitleProps) => JSX.Element) & { displayName: string; }; //# sourceMappingURL=ToolbarTitle.d.ts.map