import React, { ReactElement } from 'react'; import { Facet } from '../types'; /** * Given a facet with a number, it renders its children "count" times. * * @param count facet with the amount of items to render * @param children function that will be called passing an index and the total. */ export declare const Times: ({ count, children, }: { count: Facet; children: (index: number, count: number) => ReactElement | null; }) => React.JSX.Element;