import { ComponentPropsWithoutRef, ReactNode } from 'react'; export interface PanelProps extends ComponentPropsWithoutRef<'div'> { title: string; children?: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "govuk-panel"; /** * The panel component is a visible container used on confirmation or results pages to highlight important content. */ export declare const Panel: ({ title, children, classBlock, classModifiers, className, ...attrs }: PanelProps) => import("react/jsx-runtime").JSX.Element;