import React from 'react'; export interface LinkWithChevronProps { variant?: '100' | '120'; children: React.ReactNode; href: string; direction?: 'left' | 'right'; onClick?: (event: React.MouseEvent) => void; target?: '_blank' | '_self' | '_parent' | '_top'; rel?: string; color?: 'white' | 'dark'; } declare const LinkWithChevron: React.FunctionComponent; export default LinkWithChevron;