export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "root" | "indicator" | "valueText" | "helpText" | "valueUnit", {
    orientation: {
        horizontal: {
            root: {
                flexDirection: "row";
                alignItems: "center";
            };
        };
    };
    positive: {
        true: {
            valueText: {
                color: "stat.indicator.up";
            };
        };
        false: {
            valueText: {
                color: "stat.indicator.down";
            };
        };
    };
    size: {
        sm: {
            valueText: {
                textStyle: "sm";
            };
        };
        md: {
            valueText: {
                textStyle: "md";
            };
        };
        lg: {
            valueText: {
                textStyle: "lg";
            };
        };
    };
}>;
