import type { Colors, ElProps } from '..'; declare type DividerAlignments = 'start' | 'center' | 'end'; declare type DividerDirections = 'horizontal' | 'vertical'; export interface DividerProps extends Partial { color?: Colors; alignment?: DividerAlignments; direction?: DividerDirections; } export {};