import { ComponentPropsWithRef, ReactNode } from 'react'; import { Spacing } from '@viasat/beam-shared/utils'; import { DividerBorderColor, DividerOrientation, DividerBorderWidth, DividerBorderStyle, DividerAlignContent } from '@viasat/beam-shared/components/divider'; export interface DividerProps extends ComponentPropsWithRef<'div'> { /** * Add text to the Divider */ children?: ReactNode; /** * Specify the direction of the Divider * @default 'horizontal' */ orientation?: DividerOrientation; /** * Specify the border color of the divider line * @default '00' */ borderColor?: DividerBorderColor; /** * Add equal padding to each side of the Divider * @default '0' */ inset?: Spacing; /** * Specify the width of the divider line * @default 'md' */ borderWidth?: DividerBorderWidth; /** * Specify the style of the divider line * @default 'solid' */ borderStyle?: DividerBorderStyle; /** * Specify the length of the Divider */ length?: string; /** * Add an icon to the Divider */ icon?: ReactNode; /** * Align content to the divider line * @default 'center' */ alignContent?: DividerAlignContent; } export declare const Divider: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;