import React, { AnchorHTMLAttributes } from 'react'; export interface LinkInlineProps extends AnchorHTMLAttributes { children: React.ReactNode; href: string; onClick?: (event: React.MouseEvent) => void; color?: 'white' | 'dark'; } declare const LinkInline: React.FunctionComponent; export default LinkInline;