import { Props } from '@guardian/src-helpers'; declare type LineEffectType = 'squiggly' | 'dotted' | 'straight' | 'dashed'; export declare type LineCount = 1 | 4 | 8; export interface LinesProps extends Props { effect?: LineEffectType; count?: LineCount; color?: string; } export declare const Lines: ({ effect, count, color, }: LinesProps) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; export {};