import React from 'react'; export type SectionHeadingSize = 'sm' | 'md' | 'lg'; export type SectionHeadingAlign = 'left' | 'center' | 'right'; export interface SectionHeadingContextValue { size: SectionHeadingSize; align: SectionHeadingAlign; } export declare const SectionHeadingContext: React.Context; export declare function useSectionHeadingContext(): SectionHeadingContextValue;