import React from 'react';
export type Props = {
    options: Array<{
        value: string;
        label?: string;
        image?: string;
        imageActive?: string;
    }>;
    value?: string;
    className?: string;
    isDisabled?: boolean;
    size?: 'small' | 'large';
    direction?: 'vertical' | 'horizontal';
    onChange?: (v: string) => void;
};
declare const RadioImageGroupForTool: ({ value, options, className, direction, onChange, isDisabled, }: Props) => React.JSX.Element;
export { RadioImageGroupForTool };
