import React from "react"; export interface Props { title?: string; children: any; variant?: "info" | "warn" | "error" | "announcement" | "success"; spacious?: boolean; classes?: string; id?: string; assistiveTextPrefix?: string; iconSize?: string; dataTestId?: string; } export declare const Panel: (props: Props) => React.JSX.Element;