import React from 'react'; import { DefaultProps, FlowindColor } from '../../styles'; export interface MarkProps extends DefaultProps, React.ComponentPropsWithoutRef<'mark'> { variant?: string; /** Background color from theme.colors */ color?: FlowindColor; } export declare const Mark: React.ForwardRefExoticComponent>;