export type OptionBoxProps = {
    icon: string;
    title: string;
    tag?: string;
    className?: string;
    changeIconColor?: boolean;
    disabled?: boolean;
    selected?: boolean;
    onSelect?: () => void;
};
export declare enum OptionBoxVariant {
    DEFAULT = "default",
    SELECTED = "selected",
    DISABLED = "disabled"
}
