import { ComponentProps, ExcludedProps, VariantProps } from "@vitality-ds/system"; import { BaseDivider } from "./styled"; export declare type DividerProps = ExcludedProps & ComponentProps & VariantProps & { /** * The direction of the divider */ direction?: Pick, "direction">; /** * Use this prop to change the colour when the divider is being used on a primary background * @default "neutral" */ color?: Pick, "color">; /** * This prop determines the thickness of the divider * @default "sm" */ size?: Pick, "size">; /** * This prop determines the spacing around the divider * @default "none" */ spacing?: Pick, "spacing">; /** * This Prop is used by the dropdown Menu group component, and needs to be stripped from the dom to prevent a console error */ isFirstItem?: never; /** * This Prop is used by the dropdown Menu group component, and needs to be stripped from the dom to prevent a console error */ indentContent?: never; };