/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type ReactNode } from 'react';
export interface LegendProps {
    children: ReactNode;
}
/**
 * __Legend__
 *
 * A Legend represents a caption for a fieldset in a user interface.
 */
export declare const Legend: ({ children }: LegendProps) => JSX.Element;
