import { ComponentProps, ReactNode } from 'react'; type Props = { title: string; children?: ReactNode; } & Omit, 'children'>; export default function Panel({ title, children, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};