import { RowSelectionState } from "@tanstack/react-table"; import { ChangeEvent } from "react"; import { AdminComponentProps, ModelIcon, ModelName, Schema } from "../types"; type Props = { resource: ModelName; isPending: boolean; onSearchChange?: (e: ChangeEvent) => void; search: string; actions?: AdminComponentProps["actions"]; selectedRows: RowSelectionState; getSelectedRowsIds: () => string[] | number[]; onDelete: () => Promise; title: string; icon?: ModelIcon; totalCount?: number; schema: Schema; }; export default function ListHeader({ resource, isPending, onSearchChange, search, actions: actionsProp, selectedRows, getSelectedRowsIds, onDelete, title, icon, totalCount, schema, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ListHeader.d.ts.map