import React, { ReactNode } from 'react'; import { ToolContent } from "../../../../together/interfaces/types"; import { HealthToolCardWrapperProps } from "../../healthTools/cardWrapper"; import { BmiFormProps, BmiFormValue, BMIUnit, BmiUnitSystem, Rule } from "../helpers"; export type BMICardEmbedProps = { bmiContent: ToolContent; children?: ReactNode; formProps?: BmiFormProps; bmiGenerated?: Record; bmiUnit?: BMIUnit; defaultUnitSystem?: BmiUnitSystem; bmiLink?: string; } & HealthToolCardWrapperProps; export declare const BMICardEmbed: ({ bmiContent, bmiGenerated, bmiUnit, defaultUnitSystem, formProps, ...props }: BMICardEmbedProps) => React.JSX.Element;