export interface PropuestaRawItem {
    type: 'prop' | 'custom';
    value: any
    key: string
}

export interface PropuestaItem {
    label: string;
    function: string;
}

export interface PropuestaConfig {
    idGama: number | null;
    name: string;
    description: string;
    rawItems: PropuestaRawItem[]
    summaryItems: PropuestaItem[]
    detailItems: PropuestaItem[]
}