declare const SetColorDialog: ({ model, handleClose, }: {
    model: {
        color?: string;
        posColor?: string;
        negColor?: string;
        setColor: (arg?: string) => void;
        setPosColor: (arg?: string) => void;
        setNegColor: (arg?: string) => void;
    };
    handleClose: () => void;
}) => import("react/jsx-runtime").JSX.Element;
export default SetColorDialog;
