/// type InfoPropTypes = { readonly shown: number; readonly total: number; readonly one: string; readonly all: string; }; declare const Info: ({ shown, total, one, all }: InfoPropTypes) => JSX.Element; export default Info;