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; bmiUnit?: BMIUnit; bmiLink?: string; formProps?: BmiFormProps; } & HealthToolCardWrapperProps; export declare const BMRCardEmbed: ({ bmrContent, bmiGenerated, bmiUnit, formProps, ...props }: BMRCardEmbedProps) => React.JSX.Element;