export declare const kbdRecipe: import("../..").RecipeDefinition<{
    variant: {
        raised: {
            bg: "colorPalette.subtle";
            color: "colorPalette.fg";
            borderWidth: "1px";
            borderBottomWidth: "2px";
            borderColor: "colorPalette.muted";
        };
        outline: {
            borderWidth: "1px";
            color: "colorPalette.fg";
        };
        subtle: {
            bg: "colorPalette.muted";
            color: "colorPalette.fg";
        };
        plain: {
            color: "colorPalette.fg";
        };
    };
    size: {
        sm: {
            textStyle: "xs";
            height: "4.5";
        };
        md: {
            textStyle: "sm";
            height: "5";
        };
        lg: {
            textStyle: "md";
            height: "6";
        };
    };
}>;
