import React, { FC } from 'react'; export interface PropsType { label: string; onClick?(): void; 'data-testid'?: string; } declare const Tag: FC>; export default Tag;