import type { Source } from '../types.ts'; interface ReducedModel { sources?: Source[]; clusterTree?: string; setLayout: (s: Source[], clearTree?: boolean) => void; clearLayout: () => void; } export default function SetColorDialog({ model, handleClose, }: { model: ReducedModel; handleClose: () => void; }): import("react/jsx-runtime").JSX.Element; export {};