import React, { CSSProperties } from 'react'; import './OutlineTag.css'; export type OutlineTagProps = { style?: CSSProperties; content?: string | React.ReactNode; className?: string; type?: "positive" | "primary"; testId?: string; hasLink?: boolean; allowPropagation?: boolean; }; declare const _default: any; export default _default;