import { SimpleListOption } from "../SimpleListOption"; export interface SimpleListToolbarProps { options?: SimpleListOption[]; onChange?: (text?: string) => Promise; onAdd: (row: { id: any; [name: string]: any; }) => void; useSearch?: boolean; }