import * as _nex_ui_system from '@nex-ui/system';
import { RecipeVariants } from '@nex-ui/system';

declare const dividerRecipe: _nex_ui_system.RecipeRuntimeFn<{
    orientation: {
        vertical: {
            mx: "6";
            width: "px";
            height: "100%";
        };
        horizontal: {
            height: "px";
            my: "6";
        };
    };
}>;
type DividerRecipe = typeof dividerRecipe;
type DividerVariants = RecipeVariants<DividerRecipe>;

export { dividerRecipe };
export type { DividerRecipe, DividerVariants };
