import { SerializedFunction } from "../shared";
export type GamaPropOption = {
    label: string;
    value: string;
    condition?: SerializedFunction;
    exclusive: boolean;
    image: null | {
        src: string;
    };
};
