import React from 'react'; export type ContextGroupProps = { title: string; children: Array; anchor: string; }; export default function ContextGroup({ title, children, anchor }: ContextGroupProps): JSX.Element;