export declare const emptyStateSlotRecipe: import("../..").SlotRecipeDefinition<"root" | "content" | "title" | "description" | "indicator", {
    size: {
        sm: {
            root: {
                px: "4";
                py: "6";
            };
            title: {
                textStyle: "md";
            };
            content: {
                gap: "4";
            };
            indicator: {
                textStyle: "2xl";
            };
        };
        md: {
            root: {
                px: "8";
                py: "12";
            };
            title: {
                textStyle: "lg";
            };
            content: {
                gap: "6";
            };
            indicator: {
                textStyle: "4xl";
            };
        };
        lg: {
            root: {
                px: "12";
                py: "16";
            };
            title: {
                textStyle: "xl";
            };
            content: {
                gap: "8";
            };
            indicator: {
                textStyle: "6xl";
            };
        };
    };
}>;
