export type HealthTool = {
    id: number;
    title: string;
    subtitle: string;
    icon: string;
    link: string;
    isSubot: boolean;
    template: string;
};
export type HealthToolApi = {
    id: number;
    title: string;
    icon: string;
    link: string;
    subtitle: string;
    is_subot: boolean;
    template: string;
};
