import type { Source } from '../types.ts'; import type { GridRowId } from '@mui/x-data-grid'; export default function SourcesDataGrid({ rows, onChange, setSelected, }: { rows: Source[]; onChange: (arg: Source[]) => void; setSelected: (arg: GridRowId[]) => void; }): import("react/jsx-runtime").JSX.Element;