import type { PropsWithChildren } from 'react';
import React from 'react';
interface SectionProps {
    spacing?: 'tight' | 'normal';
}
export declare function Section({ children, spacing }: PropsWithChildren<SectionProps>): React.JSX.Element;
interface SectionHeadingProps {
    title: string;
    subtitle?: string;
}
export declare function SectionHeading({ title, subtitle }: SectionHeadingProps): React.JSX.Element;
export declare function SectionBody({ children }: PropsWithChildren<unknown>): React.JSX.Element;
export {};
