import { Props } from '../searchinput/SearchInput.component'; import { TableLocalType } from './TableUtils'; export type DisplayedName = { plural: string; singular: string; }; export type SearchProps = { onChange: (arg0: string) => void; value?: string; locale?: TableLocalType; totalCount?: number; } & Omit; export declare const TableItemCount: ({ entity, count, locale, }: { entity: { singular: string; plural: string; }; count: number; locale: "en" | "fr"; }) => import("react/jsx-runtime").JSX.Element; export declare function TableSearch(props: SearchProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Search.d.ts.map