/** * Orientation of the divider element. * Horizontal divides content vertically, vertical divides it horizontally. */ export declare type VegaDividerDirectionType = 'horizontal' | 'vertical'; /** * Visual styling variant for the divider. * Primary is more prominent, secondary is more subtle. */ export declare type VegaDividerVariantType = 'primary' | 'secondary'; /** * Dimensions configuration for divider size. * Allows separate control of width and height. */ export declare type VegaDividerSizeType = { /** * Width dimension of the divider. */ width?: string; /** * Height dimension of the divider. */ height?: string; };