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