import * as React from 'react'; import * as SeparatorPrimitive from '@radix-ui/react-separator'; import { type VariantProps } from 'class-variance-authority'; declare const dividerVariants: (props?: ({ orientation?: "horizontal" | "vertical" | null | undefined; height?: 16 | 8 | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type DividerProps = React.ComponentPropsWithoutRef & VariantProps; declare const Divider: React.ForwardRefExoticComponent, "ref"> & VariantProps<(props?: ({ orientation?: "horizontal" | "vertical" | null | undefined; height?: 16 | 8 | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string> & React.RefAttributes>; export { Divider };