import type { Source } from '../types.ts'; declare function SourcesGrid({ rows, onChange, showTips, }: { rows: Source[]; onChange: (arg: Source[]) => void; showTips: boolean; }): import("react/jsx-runtime").JSX.Element; export default SourcesGrid;