import React from 'react'; import { AgeCategoryCount, AgeCategoryType } from '../FilterBarTypes'; type Props = { ageCategoryCounts: AgeCategoryCount; ageCategories?: AgeCategoryType[]; guestLabel: string; guestsLabel: string; guestsPlaceholder: string; }; type AccType = { total: number; html: string[]; }; export declare const parseGuests: ({ guestLabel, guestsLabel, guestsPlaceholder, ageCategoryCounts, ageCategories, }: Props) => { content: string; data: AccType; } | { content: React.JSX.Element; data: AccType; }; export {};