import React from 'react';
import { ReactNode } from 'react';
import { SiteType } from "../../../interfaces/types";
export type Props = {
    options: Array<{
        content: ReactNode;
        value: string;
        label?: string;
    }>;
    value?: string;
    className?: string;
    isDisabled?: boolean;
    size?: 'small' | 'large';
    direction?: 'vertical' | 'horizontal';
    onChange?: (v: string) => void;
    siteType?: SiteType;
};
declare const RadioImageGroup: ({ value, options, className, direction, onChange, isDisabled, siteType, }: Props) => React.JSX.Element;
export { RadioImageGroup };
