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