/// import { QueryParamDispatchFunction } from '../hooks/useQueryParamsReducer'; import type { PublHeaders, SandollFontsQueryParams } from '../api/types'; import type { SANDOLL_Font } from '../types'; type HeadlessProps = { isLoading: boolean; fonts: SANDOLL_Font[]; queryParams: SandollFontsQueryParams; queryParamDispatch: QueryParamDispatchFunction; }; type Props = { baseURL: string; defaultQueryParams?: SandollFontsQueryParams; publHeaders: PublHeaders; children: (args: HeadlessProps) => JSX.Element; }; declare function SandollFontsList({ baseURL, defaultQueryParams, publHeaders, children }: Props): JSX.Element; export default SandollFontsList;