import { ReactNode } from 'react'; /** * Orientation of the divider */ export type DividerOrientation = 'horizontal' | 'vertical'; /** * Line style variant */ export type DividerVariant = 'solid' | 'dashed'; /** * Props for the Divider component */ export interface DividerProps { /** * Optional text or content to display in the middle of the divider */ children?: ReactNode; /** * Orientation of the divider * @default 'horizontal' */ orientation?: DividerOrientation; /** * Line style variant * @default 'solid' */ variant?: DividerVariant; /** * Custom className */ className?: string; /** * Test ID for testing purposes */ 'data-testid'?: string; } //# sourceMappingURL=Divider.types.d.ts.map