export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "arrow" | "arrowTip", {
    variant: {
        regular: {
            content: {
                '--tooltip-bg': "colors.tooltip.bg";
                bg: "var(--tooltip-bg)";
                color: "tooltip.fg";
            };
        };
        popover: {
            content: {
                maxW: "none";
                bg: "popover.bg";
                color: "text.primary";
                p: "4";
                boxShadow: "popover";
                boxShadowColor: "popover.shadow";
                borderRadius: "md";
                textAlign: "left";
                fontWeight: "normal";
            };
        };
    };
}>;
