@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 666 B
TypeScript
import React from 'react';
import { ToolContent } from "../../../../together/interfaces/types";
import { HealthToolCardWrapperProps } from "../../healthTools/cardWrapper";
import { BmiFormProps, BmiFormValue, BMIUnit, Rule } from "../helpers";
export type BMRCardEmbedProps = {
bmrContent: ToolContent;
bmiGenerated?: Record<keyof BmiFormValue, {
label: string;
rule?: Rule;
}>;
bmiUnit?: BMIUnit;
bmiLink?: string;
formProps?: BmiFormProps;
} & HealthToolCardWrapperProps;
export declare const BMRCardEmbed: ({ bmrContent, bmiGenerated, bmiUnit, formProps, ...props }: BMRCardEmbedProps) => React.JSX.Element;