export default interface Choice {
    title?: {
        any?: string;
        en?: string;
        nl?: string;
        cy?: string;
        it?: string;
    };
    selectedTitle?: string;
    action: {
        type: string;
        value?: any;
        view?: string;
        track?: boolean;
    };
    profile?: any;
    userStatus?: string;
    formValue?: string;
    session?: any;
    functionArgs?: any;
    persistentMenu?: boolean;
    selectBlock?: {
        id: string;
    };
    _id?: any;
}
