export interface DashedLine {
  width?: number;
  height?: number;
  color?: 'primary' | 'secondary' | 'custom' | string 
}

declare const DashedLine: React.ComponentType<DashedLine>;

export default DashedLine;