import React from 'react'; import type { Section } from '../../services/types.js'; export interface SectionProps { children: React.ReactNode; section: Section; } interface SectionContextValue { section: Section; } export declare function Section(props: SectionProps): import("react/jsx-runtime").JSX.Element; export declare function useSectionContext(): SectionContextValue; export interface SectionNameProps { children: (props: { name: string; }) => React.ReactNode; } export interface SectionDescriptionProps { children: (props: { description: string; }) => React.ReactNode; } export declare function Name(props: SectionNameProps): React.ReactNode; export declare function Description(props: SectionDescriptionProps): React.ReactNode; export {};