import { default as React, JSX } from 'react';
export type TagProps = {
children: React.ReactNode;
background?: string;
} & JSX.IntrinsicElements['span'];
export declare const Tag: ({ children, background, className, ...spanProps }: TagProps) => JSX.Element;
export default Tag;