import type { tags } from '@wix/blog'; import { AsChildChildren } from '@wix/headless-utils/react'; import React from 'react'; export interface LabelProps { asChild?: boolean; className?: string; children?: AsChildChildren<{ tag: tags.BlogTag; }> | React.ReactNode; } export declare const Label: React.ForwardRefExoticComponent>;