import { ReactNode } from 'react'; export interface LegendProps { children: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; isPageHeading?: boolean; [key: string]: any; } export declare const Legend: ({ children, classBlock, classModifiers, className, isPageHeading, ...attrs }: LegendProps) => import("react/jsx-runtime").JSX.Element;