interface Row { name: string; [key: string]: unknown; } export default function SetColorDialogBulkEditPanel({ onClose, currLayout, }: { currLayout: Row[]; onClose: (arg?: Row[]) => void; }): import("react/jsx-runtime").JSX.Element; export {};