import { IBox } from "../../core/types"; export interface IDivider extends IBox { type?: 'solid' | 'dashed' | 'thick'; direction?: 'horizontal' | 'vertical'; }