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;
